2024-08-05 20:33:00 +10:00

8 lines
289 B
TypeScript

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>;
}