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