speechflow
Version:
Speech Processing Flow Graph
14 lines (13 loc) • 372 B
TypeScript
import SpeechFlowNode from "./speechflow-node";
export default class SpeechFlowNodeT2TGoogle extends SpeechFlowNode {
static name: string;
private client;
constructor(id: string, cfg: {
[id: string]: any;
}, opts: {
[id: string]: any;
}, args: any[]);
status(): Promise<{}>;
open(): Promise<void>;
close(): Promise<void>;
}