UNPKG

echogarden

Version:

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

12 lines (9 loc) 293 B
import { type AudioPlayerID } from "../audio/AudioPlayer.js" export interface CLIOptions { play?: boolean player?: AudioPlayerID overwrite?: boolean debug?: boolean config?: string } export const CLIOptionsKeys: (keyof CLIOptions)[] = ['play', 'player', 'overwrite', 'debug', 'config']