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 a5e21dc + 76e6aae commit 5c1e31eCopy full SHA for 5c1e31e
api/project-backup/project/list.ts
@@ -0,0 +1,19 @@
1
+import type { UnixTime } from "../../../base.ts";
2
+
3
+/** The response type of /api/project-backup/:projectname/list */
4
+export interface BackupList {
5
+ /** backup list */
6
+ backups: BackupSummary[];
7
+}
8
9
+/** Backup summary */
10
+export interface BackupSummary {
11
+ /** backuped date */
12
+ backuped: UnixTime;
13
+ /** backup Id */
14
+ id: string;
15
+ /** total links in the backup */
16
+ totalLinks: number;
17
+ /** total pages in the backup */
18
+ totalPages: number;
19
0 commit comments