UNPKG

convai-web-sdk

Version:

Integrate lifelike digital beings into your web applications with real-time conversations, actions, and facial expressions. Supports a variety of voices, languages, and emotions.

10 lines (9 loc) 209 B
declare class AsyncBlockingQueue { private queue; private resolvers; constructor(); enqueue(t: any): void; dequeue(): Promise<any>; isEmpty(): boolean; } export { AsyncBlockingQueue };