feat: finished basic functio

This commit is contained in:
2024-11-26 19:40:57 +08:00
parent 8f9dd089bc
commit b2e3930c10
15 changed files with 561 additions and 29 deletions
+8
View File
@@ -0,0 +1,8 @@
export type Status = 'pending' | 'processing' | 'done' | 'error';
export type SaveTo = 'original' | 'custom'
export type Item = {
status: Status;
file: string;
}