assassin-bug/framework/tts/index.d.ts

8 lines
195 B
TypeScript
Raw Permalink Normal View History

2022-11-26 01:22:02 +00:00
import { BaseOutput } from './outputs/base-output';
export declare class TTS {
private output;
constructor(output?: BaseOutput);
speak(text: string): void;
stop(): void;
}