speechflow
Version:
Speech Processing Flow Graph
20 lines (19 loc) • 498 B
TypeScript
import SpeechFlowNode from "./speechflow-node";
export default class SpeechFlowNodeA2TDeepgram extends SpeechFlowNode {
static name: string;
private dg;
private destroyed;
private initTimeout;
private connectionTimeout;
private queue;
constructor(id: string, cfg: {
[id: string]: any;
}, opts: {
[id: string]: any;
}, args: any[]);
status(): Promise<{
balance: string;
}>;
open(): Promise<void>;
close(): Promise<void>;
}