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.
2 parents d883d6f + e3958a4 commit 3e131d4Copy full SHA for 3e131d4
response.ts
@@ -354,3 +354,23 @@ export interface CommitsResponse {
354
/** 指定したページのcommits */
355
commits: Commit[];
356
}
357
+
358
+/** the response type of /api/page-snapshots/:projectname/:pageid */
359
+export interface PageSnapshot {
360
+ pageId: PageId;
361
362
+ /** 作成されているsnapshots */
363
+ snapshots: Snapshot[];
364
+}
365
366
+/** a page snapshot */
367
+export interface Snapshot {
368
+ /** snapshotを撮ったときのページタイトル */
369
+ title: string;
370
371
+ /** snapshotの作成日時 */
372
+ created: UnixTime;
373
374
+ /** snapshotしたページ本文 */
375
+ lines: BaseLine[];
376
0 commit comments