Valens-AIO/types/utils/AyncQueue.d.ts

8 lines
285 B
TypeScript
Raw Normal View History

2022-07-30 00:35:54 -04:00
import { IAsyncQueue } from "../models/spt/utils/IAsyncQueue";
import { ICommand } from "../models/spt/utils/ICommand";
export declare class AsyncQueue implements IAsyncQueue {
protected commandsQueue: ICommand[];
constructor();
waitFor(command: ICommand): Promise<any>;
}