user 6 years ago
parent
commit
5efa6d9415
2 changed files with 2 additions and 2 deletions
  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;
 }