user před 7 roky
rodič
revize
5efa6d9415
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 1 1
      lib/upload-item-link.d.ts
  2. 1 1
      src/upload-item-link.ts

+ 1 - 1
lib/upload-item-link.d.ts

@@ -1,5 +1,5 @@
 export interface UploadItemLink {
     rel: string;
     target: string;
-    text: string;
+    text?: string;
 }

+ 1 - 1
src/upload-item-link.ts

@@ -1,5 +1,5 @@
 export interface UploadItemLink {
     rel: string;
     target: string;
-    text: string;
+    text?: string;
 }