ScavXpCounts/types/utils/AsyncQueue.d.ts

8 lines
285 B
TypeScript
Raw Normal View History

2023-08-17 19:49:16 -06: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>;
}