UNPKG

echogarden

Version:

An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.

10 lines (9 loc) 268 B
import { type AudioPlayerID } from "../audio/AudioPlayer.js"; export interface CLIOptions { play?: boolean; player?: AudioPlayerID; overwrite?: boolean; debug?: boolean; config?: string; } export declare const CLIOptionsKeys: (keyof CLIOptions)[];