speechflow
Version:
Speech Processing Flow Graph
29 lines (28 loc) • 582 B
TypeScript
import CLIio from "cli-io";
export interface CLIOptions {
V: boolean;
S: boolean;
v: string;
a: string;
p: number;
C: string;
d: string;
o: string;
e: string;
f: string;
c: string;
_: (string | number)[];
}
export declare class CLIContext {
cli: CLIio | null;
args: CLIOptions | null;
config: string | null;
debug: boolean;
isInitialized(): this is CLIContext & {
cli: CLIio;
args: CLIOptions;
config: string;
};
init(): Promise<void>;
handleTopLevelError(err: Error): never;
}