@bilig/protocol 0.10.55 → 0.10.56
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
|
@@ -564,6 +564,13 @@ export interface WorkbookNoteSnapshot {
|
|
|
564
564
|
address: string;
|
|
565
565
|
text: string;
|
|
566
566
|
}
|
|
567
|
+
export interface WorkbookHyperlinkSnapshot {
|
|
568
|
+
sheetName: string;
|
|
569
|
+
address: string;
|
|
570
|
+
target: string;
|
|
571
|
+
tooltip?: string;
|
|
572
|
+
display?: string;
|
|
573
|
+
}
|
|
567
574
|
export interface WorkbookLegacyCommentVmlSnapshot {
|
|
568
575
|
relationshipTarget: string;
|
|
569
576
|
vmlXml: string;
|
|
@@ -625,6 +632,7 @@ export interface SheetMetadataSnapshot {
|
|
|
625
632
|
protectedRanges?: WorkbookRangeProtectionSnapshot[];
|
|
626
633
|
commentThreads?: WorkbookCommentThreadSnapshot[];
|
|
627
634
|
notes?: WorkbookNoteSnapshot[];
|
|
635
|
+
hyperlinks?: WorkbookHyperlinkSnapshot[];
|
|
628
636
|
legacyCommentVml?: WorkbookLegacyCommentVmlSnapshot;
|
|
629
637
|
printerSettings?: WorkbookPrinterSettingsSnapshot[];
|
|
630
638
|
sheetPr?: WorkbookSheetPrSnapshot;
|