mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
9f5282c8f5
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
15 lines
309 B
TypeScript
15 lines
309 B
TypeScript
import { VoiceTypingProvider } from './VoiceTyping';
|
|
|
|
const vosk: VoiceTypingProvider = {
|
|
supported: () => false,
|
|
modelLocalFilepath: () => null,
|
|
getDownloadUrl: () => null,
|
|
getUuidPath: () => null,
|
|
build: async () => {
|
|
throw new Error('Unsupported!');
|
|
},
|
|
modelName: 'vosk',
|
|
};
|
|
|
|
export default vosk;
|