8 lines
285 B
TypeScript
8 lines
285 B
TypeScript
|
import { IAsyncQueue } from "../models/spt/utils/IAsyncQueue";
|
||
|
import { ICommand } from "../models/spt/utils/ICommand";
|
||
|
export declare class AsyncQueue implements IAsyncQueue {
|
||
|
protected commandsQueue: ICommand[];
|
||
|
constructor();
|
||
|
waitFor(command: ICommand): Promise<any>;
|
||
|
}
|