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 } */