8 lines
297 B
TypeScript
Raw Normal View History

2024-04-03 20:15:11 +11:00
import { IAsyncQueue } from "@spt-aki/models/spt/utils/IAsyncQueue";
import { ICommand } from "@spt-aki/models/spt/utils/ICommand";
2023-06-11 15:10:34 +10:00
export declare class AsyncQueue implements IAsyncQueue {
protected commandsQueue: ICommand[];
constructor();
waitFor(command: ICommand): Promise<any>;
}