@bilig/protocol 0.11.0 → 0.11.4
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 +9 -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;
|
|
@@ -601,6 +602,12 @@ export interface WorkbookPrinterSettingsSnapshot {
|
|
|
601
602
|
export interface WorkbookSheetPrSnapshot {
|
|
602
603
|
xml: string;
|
|
603
604
|
}
|
|
605
|
+
export interface WorkbookIgnoredErrorsSnapshot {
|
|
606
|
+
xml: string;
|
|
607
|
+
}
|
|
608
|
+
export interface WorkbookSparklinesSnapshot {
|
|
609
|
+
xml: string;
|
|
610
|
+
}
|
|
604
611
|
export type WorkbookSheetVisibilitySnapshot = 'hidden' | 'veryHidden';
|
|
605
612
|
export interface WorkbookCellMetadataSnapshot {
|
|
606
613
|
relationshipTarget: string;
|
|
@@ -652,6 +659,8 @@ export interface SheetMetadataSnapshot {
|
|
|
652
659
|
legacyCommentVml?: WorkbookLegacyCommentVmlSnapshot;
|
|
653
660
|
printerSettings?: WorkbookPrinterSettingsSnapshot[];
|
|
654
661
|
sheetPr?: WorkbookSheetPrSnapshot;
|
|
662
|
+
ignoredErrors?: WorkbookIgnoredErrorsSnapshot;
|
|
663
|
+
sparklines?: WorkbookSparklinesSnapshot;
|
|
655
664
|
visibility?: WorkbookSheetVisibilitySnapshot;
|
|
656
665
|
cellMetadataRefs?: WorkbookCellMetadataReferenceSnapshot[];
|
|
657
666
|
}
|