Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit e6bdb82

Browse files
authored
docs: Change the comment for Entry data type (#1503)
* Change the comment for Entry data type * docs: Change the comment for Entry data type
1 parent 86c8f4b commit e6bdb82

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/table.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,9 @@ export type Entry = any;
290290
/*
291291
The Entry type is expected to be in the following format:
292292
{
293-
columnFamily: {
294-
column: Data // Data is the expected type passed into Mutation.encodeSetCell
295-
}
293+
key?: Uint8Array|string,
294+
data?: Data, // The Data type is described in the Mutation class.
295+
method?: typeof mutation.methods
296296
}
297297
*/
298298

0 commit comments

Comments
 (0)