@bilig/protocol 0.11.24 → 0.11.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +14 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -275,10 +275,24 @@ export interface WorkbookTableSnapshot {
|
|
|
275
275
|
startAddress: string;
|
|
276
276
|
endAddress: string;
|
|
277
277
|
columnNames: string[];
|
|
278
|
+
columns?: WorkbookTableColumnSnapshot[];
|
|
278
279
|
headerRow: boolean;
|
|
279
280
|
totalsRow: boolean;
|
|
281
|
+
style?: WorkbookTableStyleSnapshot;
|
|
280
282
|
sortState?: string;
|
|
281
283
|
}
|
|
284
|
+
export interface WorkbookTableColumnSnapshot {
|
|
285
|
+
name: string;
|
|
286
|
+
totalsRowLabel?: string;
|
|
287
|
+
totalsRowFunction?: string;
|
|
288
|
+
}
|
|
289
|
+
export interface WorkbookTableStyleSnapshot {
|
|
290
|
+
name?: string;
|
|
291
|
+
showFirstColumn?: boolean;
|
|
292
|
+
showLastColumn?: boolean;
|
|
293
|
+
showRowStripes?: boolean;
|
|
294
|
+
showColumnStripes?: boolean;
|
|
295
|
+
}
|
|
282
296
|
export interface WorkbookAxisMetadataSnapshot {
|
|
283
297
|
start: number;
|
|
284
298
|
count: number;
|