fix: make canBeUsed non async
This commit is contained in:
@@ -5,6 +5,9 @@ const ttsNone: TTSModule = {
|
||||
getVoices: async (): Promise<Array<string>> => [],
|
||||
generate: async (): Promise<TTSResponse> => {
|
||||
return { data: Buffer.from([]) };
|
||||
},
|
||||
canBeUsed: (): boolean => {
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user