speechflow
Version:
Speech Processing Flow Graph
20 lines (19 loc) • 516 B
TypeScript
import SpeechFlowNode from "./speechflow-node";
export default class SpeechFlowNodeA2AGender extends SpeechFlowNode {
static name: string;
private classifier;
private queue;
private queueRecv;
private queueAC;
private queueSend;
private shutdown;
private workingOffTimer;
private progressInterval;
constructor(id: string, cfg: {
[id: string]: any;
}, opts: {
[id: string]: any;
}, args: any[]);
open(): Promise<void>;
close(): Promise<void>;
}