12 lines
260 B
TypeScript
12 lines
260 B
TypeScript
import { TTSModule, TTSResponse } from '../tts';
|
|
|
|
const ttsNone: TTSModule = {
|
|
name: 'None',
|
|
getVoices: async (): Promise<Array<string>> => [],
|
|
generate: async (): Promise<TTSResponse> => {
|
|
return { data: Buffer.from([]) };
|
|
}
|
|
};
|
|
|
|
export default ttsNone;
|