user 6 年 前
コミット
5efa6d9415
2 ファイル変更2 行追加2 行削除
  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;
 }