speechflow
Version:
Speech Processing Flow Graph
18 lines (17 loc) • 468 B
TypeScript
import SpeechFlowNode from "./speechflow-node";
export default class SpeechFlowNodeT2TSentence extends SpeechFlowNode {
static name: string;
private queue;
private queueRecv;
private queueSplit;
private queueSend;
private destroyed;
private workingOffTimer;
constructor(id: string, cfg: {
[id: string]: any;
}, opts: {
[id: string]: any;
}, args: any[]);
open(): Promise<void>;
close(): Promise<void>;
}