ScavXpCounts/types/utils/AsyncQueue.d.ts

8 lines
289 B
TypeScript
Raw Normal View History

2024-11-12 11:51:30 -07:00
import { IAsyncQueue } from "@spt/models/spt/utils/IAsyncQueue";
import { ICommand } from "@spt/models/spt/utils/ICommand";
2023-08-17 19:49:16 -06:00
export declare class AsyncQueue implements IAsyncQueue {
protected commandsQueue: ICommand[];
constructor();
waitFor(command: ICommand): Promise<any>;
}