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