@bilig/protocol 0.11.10 → 0.11.12
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
|
@@ -211,6 +211,13 @@ export interface WorkbookPivotSnapshot {
|
|
|
211
211
|
}
|
|
212
212
|
export interface WorkbookStyleArtifactsSnapshot {
|
|
213
213
|
stylesXml: string;
|
|
214
|
+
theme?: WorkbookThemeArtifactSnapshot;
|
|
215
|
+
}
|
|
216
|
+
export interface WorkbookThemeArtifactSnapshot {
|
|
217
|
+
path: string;
|
|
218
|
+
xml: string;
|
|
219
|
+
relationship: WorkbookPackageRelationshipSnapshot;
|
|
220
|
+
contentType?: string;
|
|
214
221
|
}
|
|
215
222
|
export interface WorkbookSheetCellStyleIndexSnapshot {
|
|
216
223
|
address: string;
|
|
@@ -218,6 +225,7 @@ export interface WorkbookSheetCellStyleIndexSnapshot {
|
|
|
218
225
|
}
|
|
219
226
|
export interface WorkbookSheetStyleArtifactsSnapshot {
|
|
220
227
|
cellStyleIndexes: WorkbookSheetCellStyleIndexSnapshot[];
|
|
228
|
+
blankCellAddresses?: string[];
|
|
221
229
|
}
|
|
222
230
|
export interface WorkbookPackageRelationshipSnapshot {
|
|
223
231
|
id: string;
|