Skip to content

Commit

Permalink
Added comments to 1 function across 1 file
Browse files Browse the repository at this point in the history
  • Loading branch information
komment-ai-beta[bot] authored Jul 18, 2024
1 parent 2fb91f3 commit b917c23
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .komment/00000.json
Original file line number Diff line number Diff line change
Expand Up @@ -938,12 +938,12 @@
"path": "types/Meta.d.ts",
"content": {
"structured": {
"description": "An interface called `Meta` that represents a metadata object with properties for version, created date, updated date, and arbitrary key-value pairs. The interface uses type annotations to specify the types of each property, including dates and objects.",
"description": "An interface called `Meta` that represents a metadata object. The interface has four properties: `version`, `created_at`, `updated_at`, and `[key: string]: any`. The `version` property is a string, while the `created_at` and `updated_at` properties are Date objects. The `any` key allows for any type of value to be stored in the object.",
"items": [
{
"id": "266813fd-c121-a8b2-4e45-53bac5206499",
"id": "1bc0b5a2-46e3-a68a-c040-e9d6b6976640",
"ancestors": [],
"description": "Defines a data structure with four properties: `version`, `createdAt`, `updatedAt`, and an arbitrary key-value pair `[key: string]` where the value can be any type.",
"description": "Defines an object with four properties: `version`, `createdAt`, `updatedAt`, and `[key: string]`. The `version` property is of type `string`, while the `createdAt` and `updatedAt` properties are of type `Date`. The `[key: string]` property is akin to an empty array, allowing any type of value to be stored within it.",
"name": "Meta",
"location": {
"start": 1,
Expand Down
5 changes: 3 additions & 2 deletions .komment/komment.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"meta": {
"version": "1",
"updated_at": "2024-07-14T22:28:11.628Z",
"updated_at": "2024-07-18T13:08:15.703Z",
"created_at": "2024-07-10T16:34:39.374Z",
"pipelines": [
"c089e2e8-dd67-4bff-afef-c8f0f6b8a931",
Expand All @@ -25,7 +25,8 @@
"532c71df-781e-414b-98ad-8f67da7424a6",
"5c864a2d-0ee3-4c2e-8392-299b19565254",
"e47a1503-66d2-402a-a043-4b6b405c390f",
"8644b83e-a319-4f94-b5f8-b999ebf633bc"
"8644b83e-a319-4f94-b5f8-b999ebf633bc",
"62f2bdd7-6e44-42b4-b522-4dce3d99e5aa"
]
},
"lookup": [
Expand Down
8 changes: 5 additions & 3 deletions types/Meta.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
/**
* @description Defines a data structure with four properties: `version`, `createdAt`,
* `updatedAt`, and an arbitrary key-value pair `[key: string]` where the value can
* be any type.
* @description Defines an object with four properties: `version`, `createdAt`,
* `updatedAt`, and `[key: string]`. The `version` property is of type `string`, while
* the `createdAt` and `updatedAt` properties are of type `Date`. The `[key: string]`
* property is akin to an empty array, allowing any type of value to be stored within
* it.
*/
export interface Meta {
version: string;
Expand Down

0 comments on commit b917c23

Please sign in to comment.