Add export_zip support

This commit is contained in:
2023-05-25 10:15:01 +08:00
parent ab4be7f8b4
commit 38e970dc7d
9 changed files with 183 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
export enum TaskType {
Download,
ExportZip,
}
export type Task = {
@@ -9,4 +10,5 @@ export type Task = {
token: string;
pn: number;
pid: number;
details: string | null;
};