style: run format:apply

This commit is contained in:
2026-01-14 22:36:07 -03:00
parent c005bc0e54
commit 294e256feb
5 changed files with 54 additions and 45 deletions
+3 -1
View File
@@ -11,7 +11,9 @@ const ttsGoogle: TTSModule = {
name: 'Google',
defaultVoice: 'en',
async getVoices(): Promise<string[]> { return GOOGLE_TTS_VOICES.voices },
async getVoices(): Promise<string[]> {
return GOOGLE_TTS_VOICES.voices;
},
async generate(voice: string, text: string): Promise<TTSResponse> {
const query = new URLSearchParams({
+1 -2
View File
@@ -83,8 +83,7 @@ class PollyTTS implements TTSModule {
}
canBeUsed(): boolean {
if (!config.aws_access_id || !config.aws_access_key)
return false;
if (!config.aws_access_id || !config.aws_access_key) return false;
return true;
}