interface ReactSpreadsheetData<Snapshot> {
    getServerSnapshot?: (() => Snapshot);
    getCellFormat(snapshot: Snapshot, row: number, column: number): undefined | string;
    getCellValue(snapshot: Snapshot, row: number, column: number): CellValue;
    getColumnCount(snapshot: Snapshot): number;
    getRowCount(snapshot: Snapshot): number;
    getSnapshot(): Snapshot;
    subscribe(onDataChange: (() => void)): (() => void);
}

Type Parameters

  • Snapshot

Hierarchy (view full)

Methods

Properties

getServerSnapshot?: (() => Snapshot)