@bilig/protocol 0.11.9 → 0.11.11
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 +5 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -218,6 +218,7 @@ export interface WorkbookSheetCellStyleIndexSnapshot {
|
|
|
218
218
|
}
|
|
219
219
|
export interface WorkbookSheetStyleArtifactsSnapshot {
|
|
220
220
|
cellStyleIndexes: WorkbookSheetCellStyleIndexSnapshot[];
|
|
221
|
+
blankCellAddresses?: string[];
|
|
221
222
|
}
|
|
222
223
|
export interface WorkbookPackageRelationshipSnapshot {
|
|
223
224
|
id: string;
|
|
@@ -313,8 +314,10 @@ export interface WorkbookAxisMetadataSnapshot {
|
|
|
313
314
|
count: number;
|
|
314
315
|
size?: number | null;
|
|
315
316
|
hidden?: boolean | null;
|
|
317
|
+
styleIndex?: number | null;
|
|
316
318
|
xlsxWidth?: number | null;
|
|
317
319
|
xlsxHeight?: number | null;
|
|
320
|
+
customFormat?: boolean | null;
|
|
318
321
|
customWidth?: boolean | null;
|
|
319
322
|
bestFit?: boolean | null;
|
|
320
323
|
outlineLevel?: number | null;
|
|
@@ -328,8 +331,10 @@ export interface WorkbookAxisEntrySnapshot {
|
|
|
328
331
|
index: number;
|
|
329
332
|
size?: number | null;
|
|
330
333
|
hidden?: boolean | null;
|
|
334
|
+
styleIndex?: number | null;
|
|
331
335
|
xlsxWidth?: number | null;
|
|
332
336
|
xlsxHeight?: number | null;
|
|
337
|
+
customFormat?: boolean | null;
|
|
333
338
|
customWidth?: boolean | null;
|
|
334
339
|
bestFit?: boolean | null;
|
|
335
340
|
outlineLevel?: number | null;
|