UNPKG

@georgestagg/webr

Version:

The statistical programming langauge R compiled into WASM for use in a web browser and node.

10 lines (9 loc) 192 B
export declare class AsyncQueue<T> { #private; constructor(); put(t: T): void; get(): Promise<T>; isEmpty(): boolean; isBlocked(): boolean; get length(): number; }