InsuranceTweaks/types/utils/AsyncQueue.d.ts

8 lines
289 B
TypeScript
Raw Normal View History

2024-07-15 09:59:30 +02:00
import { IAsyncQueue } from "@spt/models/spt/utils/IAsyncQueue";
import { ICommand } from "@spt/models/spt/utils/ICommand";
export declare class AsyncQueue implements IAsyncQueue {
protected commandsQueue: ICommand[];
constructor();
waitFor(command: ICommand): Promise<any>;
}