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 (11 loc) 385 B
export declare function startServer(serverOptions: ServerOptions, onStarted: (options: ServerOptions) => void): Promise<void>; export interface ServerOptions { port?: number; secure?: boolean; certPath?: string; keyPath?: string; deflate?: boolean; maxPayload?: number; useWorkerThread?: boolean; } export declare const defaultServerOptions: ServerOptions;