2024-02-23 15:06:00 -07:00
|
|
|
import { IAsyncQueue } from "@spt-aki/models/spt/utils/IAsyncQueue";
|
|
|
|
import { ICommand } from "@spt-aki/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>;
|
|
|
|
}
|