7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
|
|
export declare class WaitQueue<T> {
|
||
|
|
#private;
|
||
|
|
push(value: T): void;
|
||
|
|
shift(): T | undefined;
|
||
|
|
wait(): Promise<T>;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=wait-queue.d.ts.map
|