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