eyes-of-a-trader/types/utils/AyncQueue.d.ts

8 lines
285 B
TypeScript
Raw Normal View History

2023-01-15 09:44:31 +11: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>;
}