Files
eh-downloader/task.ts
2023-05-31 08:09:57 +08:00

14 lines
196 B
TypeScript

export enum TaskType {
Download,
ExportZip,
}
export type Task = {
id: number;
type: TaskType;
gid: number;
token: string;
pid: number;
details: string | null;
};