@bilig/protocol 0.10.64 → 0.11.2
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 +2 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -255,6 +255,7 @@ export interface WorkbookTableSnapshot {
|
|
|
255
255
|
columnNames: string[];
|
|
256
256
|
headerRow: boolean;
|
|
257
257
|
totalsRow: boolean;
|
|
258
|
+
sortState?: string;
|
|
258
259
|
}
|
|
259
260
|
export interface WorkbookAxisMetadataSnapshot {
|
|
260
261
|
start: number;
|
|
@@ -305,6 +306,7 @@ export interface WorkbookCalculationSettingsSnapshot {
|
|
|
305
306
|
iterate?: boolean | null;
|
|
306
307
|
iterateCount?: number | null;
|
|
307
308
|
iterateDelta?: string | null;
|
|
309
|
+
fullPrecision?: boolean | null;
|
|
308
310
|
fullCalcOnLoad?: boolean | null;
|
|
309
311
|
concurrentCalc?: boolean | null;
|
|
310
312
|
}
|