We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eeee56 commit ea3f7a9Copy full SHA for ea3f7a9
scrapbox.d.ts
@@ -172,6 +172,31 @@ export type LinksResponse =
172
/** ページ内のリンク */ links: string[];
173
}[];
174
175
+export type ProjectBackup = {
176
+ name: string;
177
+ displayName: string;
178
+ exported: number;
179
+ pages: {
180
+ id: string;
181
+ title: string;
182
+ created: number;
183
+ updated: number;
184
+ lines: string[];
185
+ };
186
+};
187
+export type ProjectBackupWithMetadata = {
188
189
190
191
192
193
194
195
196
+ lines: { text: string; updated: number; created: number }[];
197
198
199
+
200
export type Layout =
201
| "list"
202
| "page"
0 commit comments