refactor: 废弃部分代码

This commit is contained in:
手瓜一十雪
2024-07-13 18:10:41 +08:00
parent 71c447bc5c
commit 4beb2491fb
2 changed files with 1 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
import { sleep } from '@/common/utils/helper';
import { logError } from './log';
type AsyncQueueTask = (() => void) | (()=>Promise<void>);
// 2024.7.13 废弃
export class AsyncQueue {
private tasks: (AsyncQueueTask)[] = [];