fix: make canBeUsed non async

This commit is contained in:
2026-01-14 21:50:54 -03:00
parent 5877644ed9
commit 4abc2ff594
5 changed files with 7 additions and 4 deletions
+3
View File
@@ -5,6 +5,9 @@ const ttsNone: TTSModule = {
getVoices: async (): Promise<Array<string>> => [],
generate: async (): Promise<TTSResponse> => {
return { data: Buffer.from([]) };
},
canBeUsed: (): boolean => {
return true;
}
};