feat: 新增任务操作功能

This commit is contained in:
DEV_DSW
2026-03-02 16:55:16 +08:00
parent b701c419d1
commit d99f1dd98e
16 changed files with 294 additions and 17 deletions

2
global.d.ts vendored
View File

@@ -80,6 +80,8 @@ declare global {
warn: (message: string, ...meta?: any[]) => void;
error: (message: string, ...meta?: any[]) => void;
},
// 任务操作
taskOperation: (params: any) => Promise<{success: boolean, error?: string}>,
}
interface Window {