1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00
joplin/packages/app-mobile/services/voiceTyping/vosk.ts

15 lines
309 B
TypeScript
Raw Normal View History

import { VoiceTypingProvider } from './VoiceTyping';
2023-05-27 17:30:25 +02:00
const vosk: VoiceTypingProvider = {
supported: () => false,
modelLocalFilepath: () => null,
getDownloadUrl: () => null,
getUuidPath: () => null,
build: async () => {
throw new Error('Unsupported!');
},
modelName: 'vosk',
};
export default vosk;