(docs) overview.md: explain tableId in data actions (#965)

This commit is contained in:
James Macindoe
2024-05-08 07:20:40 +10:00
committed by GitHub
parent d5e82a4e88
commit 9a89901042

View File

@@ -88,7 +88,7 @@ export type RemoveTable = ['RemoveTable', string];
export type RenameTable = ['RenameTable', string, string]; export type RenameTable = ['RenameTable', string, string];
``` ```
Data actions take a numeric `rowId` (or a list of them, for “bulk” actions) and a set of values: Data actions take a string `tableId` and a numeric `rowId` (or a list of them, for “bulk” actions) and a set of values:
``` ```
export interface ColValues { [colId: string]: CellValue; } export interface ColValues { [colId: string]: CellValue; }