rashi-discord-bot-lib
Version:
🚀 Powerful Discord bot framework with built-in database, event handling, and utilities
14 lines • 422 B
TypeScript
export interface TTSOptions {
languageCode?: string;
voiceName?: string;
speakingRate?: number;
pitch?: number;
outputPath?: string;
}
export declare class TTSService {
private client;
constructor();
synthesizeToFile(text: string, options?: TTSOptions): Promise<string>;
synthesizeToBuffer(text: string, options?: TTSOptions): Promise<Buffer>;
}
//# sourceMappingURL=TTSService.d.ts.map