@bilig/protocol 0.11.22 → 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 +9 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -669,6 +669,14 @@ export interface WorkbookViewStateSnapshot {
|
|
|
669
669
|
export interface WorkbookSheetViewStateSnapshot {
|
|
670
670
|
sheetViewsXml: string;
|
|
671
671
|
}
|
|
672
|
+
export interface WorkbookSheetPrintPageSetupSnapshot {
|
|
673
|
+
printOptionsXml?: string;
|
|
674
|
+
pageMarginsXml?: string;
|
|
675
|
+
pageSetupXml?: string;
|
|
676
|
+
headerFooterXml?: string;
|
|
677
|
+
rowBreaksXml?: string;
|
|
678
|
+
colBreaksXml?: string;
|
|
679
|
+
}
|
|
672
680
|
export interface WorkbookMetadataSnapshot {
|
|
673
681
|
properties?: WorkbookPropertySnapshot[];
|
|
674
682
|
documentPropertyArtifacts?: WorkbookDocumentPropertiesArtifactsSnapshot;
|
|
@@ -733,6 +741,7 @@ export interface SheetMetadataSnapshot {
|
|
|
733
741
|
richTextArtifacts?: WorkbookSheetRichTextArtifactsSnapshot;
|
|
734
742
|
threadedCommentArtifacts?: WorkbookSheetThreadedCommentArtifactsSnapshot;
|
|
735
743
|
viewState?: WorkbookSheetViewStateSnapshot;
|
|
744
|
+
printPageSetup?: WorkbookSheetPrintPageSetupSnapshot;
|
|
736
745
|
}
|
|
737
746
|
export interface WorkbookSnapshot {
|
|
738
747
|
version: 1;
|