File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ export interface SearchedTitle {
129129 /** ページ内のリンク */ links : string [ ] ;
130130}
131131
132- export type ProjectBackup = {
132+ export interface ProjectBackup {
133133 name : string ;
134134 displayName : string ;
135135 exported : number ;
@@ -140,8 +140,8 @@ export type ProjectBackup = {
140140 updated : number ;
141141 lines : string [ ] ;
142142 } ;
143- } ;
144- export type ProjectBackupWithMetadata = {
143+ }
144+ export interface ProjectBackupWithMetadata {
145145 name : string ;
146146 displayName : string ;
147147 exported : number ;
@@ -152,4 +152,4 @@ export type ProjectBackupWithMetadata = {
152152 updated : number ;
153153 lines : Omit < Line , "id" | "userId" > [ ] ;
154154 } ;
155- } ;
155+ }
Original file line number Diff line number Diff line change 22export interface Line {
33 /** 行のid */ id : LineId ;
44 /** 行のテキスト */ text : string ;
5- /** 一番最後に行を編集した人のid */ userId : string ;
5+ /** 一番最後に行を編集した人のid */ userId : UserId ;
66 /** 行の作成日時 */ created : number ;
77 /** 行の最終更新日時 */ updated : number ;
88}
You can’t perform that action at this time.
0 commit comments