user 6 anos atrás
pai
commit
5efa6d9415
2 arquivos alterados com 2 adições e 2 exclusões
  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;
 }