UNPKG

ai-slot-web-sdk

Version:

Effortlessly incorporate lifelike digital beings into your web applications, offering real-time conversations, actions, and facial expressions. They support a wide range of voices, languages, and emotional tones.

13 lines (12 loc) 334 B
declare class AsyncBlockingQueue<T> { private resolvers; private promises; private _add; enqueue(value: T): void; dequeue(): Promise<T>; isEmpty(): boolean; isBlocked(): boolean; get length(): number; [Symbol.asyncIterator](): AsyncIterableIterator<T>; } export { AsyncBlockingQueue };