@bilig/protocol 0.11.5 → 0.11.6
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 +12 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -209,6 +209,16 @@ export interface WorkbookPivotSnapshot {
|
|
|
209
209
|
rows: number;
|
|
210
210
|
cols: number;
|
|
211
211
|
}
|
|
212
|
+
export interface WorkbookStyleArtifactsSnapshot {
|
|
213
|
+
stylesXml: string;
|
|
214
|
+
}
|
|
215
|
+
export interface WorkbookSheetCellStyleIndexSnapshot {
|
|
216
|
+
address: string;
|
|
217
|
+
styleIndex: number;
|
|
218
|
+
}
|
|
219
|
+
export interface WorkbookSheetStyleArtifactsSnapshot {
|
|
220
|
+
cellStyleIndexes: WorkbookSheetCellStyleIndexSnapshot[];
|
|
221
|
+
}
|
|
212
222
|
export interface WorkbookPackageRelationshipSnapshot {
|
|
213
223
|
id: string;
|
|
214
224
|
type: string;
|
|
@@ -650,6 +660,7 @@ export interface WorkbookMetadataSnapshot {
|
|
|
650
660
|
images?: WorkbookImageSnapshot[];
|
|
651
661
|
shapes?: WorkbookShapeSnapshot[];
|
|
652
662
|
styles?: CellStyleRecord[];
|
|
663
|
+
styleArtifacts?: WorkbookStyleArtifactsSnapshot;
|
|
653
664
|
formats?: CellNumberFormatRecord[];
|
|
654
665
|
macroPayloads?: WorkbookMacroPayloadSnapshot[];
|
|
655
666
|
calculationSettings?: WorkbookCalculationSettingsSnapshot;
|
|
@@ -681,6 +692,7 @@ export interface SheetMetadataSnapshot {
|
|
|
681
692
|
sheetPr?: WorkbookSheetPrSnapshot;
|
|
682
693
|
ignoredErrors?: WorkbookIgnoredErrorsSnapshot;
|
|
683
694
|
sparklines?: WorkbookSparklinesSnapshot;
|
|
695
|
+
styleArtifacts?: WorkbookSheetStyleArtifactsSnapshot;
|
|
684
696
|
pivotArtifacts?: WorkbookSheetPivotArtifactsSnapshot;
|
|
685
697
|
visibility?: WorkbookSheetVisibilitySnapshot;
|
|
686
698
|
cellMetadataRefs?: WorkbookCellMetadataReferenceSnapshot[];
|