@bilig/protocol 0.11.21 → 0.11.23
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 +17 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -663,6 +663,20 @@ export interface WorkbookRichTextCellSnapshot {
|
|
|
663
663
|
export interface WorkbookSheetRichTextArtifactsSnapshot {
|
|
664
664
|
cells: WorkbookRichTextCellSnapshot[];
|
|
665
665
|
}
|
|
666
|
+
export interface WorkbookViewStateSnapshot {
|
|
667
|
+
bookViewsXml: string;
|
|
668
|
+
}
|
|
669
|
+
export interface WorkbookSheetViewStateSnapshot {
|
|
670
|
+
sheetViewsXml: string;
|
|
671
|
+
}
|
|
672
|
+
export interface WorkbookSheetPrintPageSetupSnapshot {
|
|
673
|
+
printOptionsXml?: string;
|
|
674
|
+
pageMarginsXml?: string;
|
|
675
|
+
pageSetupXml?: string;
|
|
676
|
+
headerFooterXml?: string;
|
|
677
|
+
rowBreaksXml?: string;
|
|
678
|
+
colBreaksXml?: string;
|
|
679
|
+
}
|
|
666
680
|
export interface WorkbookMetadataSnapshot {
|
|
667
681
|
properties?: WorkbookPropertySnapshot[];
|
|
668
682
|
documentPropertyArtifacts?: WorkbookDocumentPropertiesArtifactsSnapshot;
|
|
@@ -678,6 +692,7 @@ export interface WorkbookMetadataSnapshot {
|
|
|
678
692
|
controlArtifacts?: WorkbookControlArtifactsSnapshot;
|
|
679
693
|
dataModelArtifacts?: WorkbookDataModelArtifactsSnapshot;
|
|
680
694
|
threadedCommentArtifacts?: WorkbookThreadedCommentArtifactsSnapshot;
|
|
695
|
+
viewState?: WorkbookViewStateSnapshot;
|
|
681
696
|
charts?: WorkbookChartSnapshot[];
|
|
682
697
|
images?: WorkbookImageSnapshot[];
|
|
683
698
|
shapes?: WorkbookShapeSnapshot[];
|
|
@@ -725,6 +740,8 @@ export interface SheetMetadataSnapshot {
|
|
|
725
740
|
cellMetadataRefs?: WorkbookCellMetadataReferenceSnapshot[];
|
|
726
741
|
richTextArtifacts?: WorkbookSheetRichTextArtifactsSnapshot;
|
|
727
742
|
threadedCommentArtifacts?: WorkbookSheetThreadedCommentArtifactsSnapshot;
|
|
743
|
+
viewState?: WorkbookSheetViewStateSnapshot;
|
|
744
|
+
printPageSetup?: WorkbookSheetPrintPageSetupSnapshot;
|
|
728
745
|
}
|
|
729
746
|
export interface WorkbookSnapshot {
|
|
730
747
|
version: 1;
|