From e6bdb8297baf2267876a884e02835a4d009dad6e Mon Sep 17 00:00:00 2001 From: danieljbruce Date: Tue, 22 Oct 2024 17:37:43 -0400 Subject: [PATCH] docs: Change the comment for Entry data type (#1503) * Change the comment for Entry data type * docs: Change the comment for Entry data type --- src/table.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/table.ts b/src/table.ts index 55d9182c3..a1bf7f886 100644 --- a/src/table.ts +++ b/src/table.ts @@ -290,9 +290,9 @@ export type Entry = any; /* The Entry type is expected to be in the following format: { - columnFamily: { - column: Data // Data is the expected type passed into Mutation.encodeSetCell - } + key?: Uint8Array|string, + data?: Data, // The Data type is described in the Mutation class. + method?: typeof mutation.methods } */