@bilig/protocol 0.10.62 → 0.10.63
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 +4 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -287,9 +287,11 @@ export interface WorkbookSheetFormatPrSnapshot {
|
|
|
287
287
|
thickBottom?: boolean | null;
|
|
288
288
|
}
|
|
289
289
|
export type WorkbookCalculationMode = 'automatic' | 'manual';
|
|
290
|
+
export type WorkbookDateSystem = '1900' | '1904';
|
|
290
291
|
export interface WorkbookCalculationSettingsSnapshot {
|
|
291
292
|
mode: WorkbookCalculationMode;
|
|
292
293
|
compatibilityMode?: CompatibilityMode;
|
|
294
|
+
dateSystem?: WorkbookDateSystem;
|
|
293
295
|
iterate?: boolean | null;
|
|
294
296
|
iterateCount?: number | null;
|
|
295
297
|
iterateDelta?: string | null;
|
|
@@ -574,6 +576,8 @@ export interface WorkbookHyperlinkSnapshot {
|
|
|
574
576
|
export interface WorkbookLegacyCommentVmlSnapshot {
|
|
575
577
|
relationshipTarget: string;
|
|
576
578
|
vmlXml: string;
|
|
579
|
+
commentsRelationshipTarget?: string;
|
|
580
|
+
commentsXml?: string;
|
|
577
581
|
commentSignature: string;
|
|
578
582
|
}
|
|
579
583
|
export interface WorkbookPrinterSettingsSnapshot {
|