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