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