├── .gitignore ├── LICENSE ├── README.md ├── dist ├── speech-polyfill.js └── speech-polyfill.min.js ├── index.js ├── js └── src │ ├── SpeechRecognition.js │ ├── SpeechRecognitionEvent.js │ ├── contracts.js │ ├── contracts │ ├── ICoginitiveServiceSpeechHypothesis.js │ ├── ICoginitiveServiceSpeechResult.js │ ├── ISpeechGrammar.js │ ├── ISpeechGrammarList.js │ ├── ISpeechRecoginitionResult.js │ ├── ISpeechRecognition.js │ ├── ISpeechRecognitionAlternative.js │ └── ISpeechRecognitionResultList.js │ ├── entities.js │ ├── entities │ ├── SpeechGrammarList.js │ ├── SpeechRecognitionEvent.js │ ├── SpeechRecognitionResult.js │ └── SpeechRecognitionResultList.js │ ├── helpers.js │ └── helpers │ └── LanguageResolver.js ├── package.json ├── src ├── SpeechRecognition.ts ├── contracts.ts ├── contracts │ ├── ICoginitiveServiceSpeechHypothesis.ts │ ├── ICoginitiveServiceSpeechResult.ts │ ├── ISpeechGrammar.ts │ ├── ISpeechGrammarList.ts │ ├── ISpeechRecoginitionResult.ts │ ├── ISpeechRecognition.ts │ └── ISpeechRecognitionAlternative.ts ├── entities.ts ├── entities │ ├── SpeechGrammarList.ts │ ├── SpeechRecognitionEvent.ts │ └── SpeechRecognitionResult.ts ├── helpers.ts └── helpers │ └── LanguageResolver.ts ├── tsconfig.json ├── types └── src │ ├── SpeechRecognition.d.ts │ ├── contracts.d.ts │ ├── contracts │ ├── ICoginitiveServiceSpeechHypothesis.d.ts │ ├── ICoginitiveServiceSpeechResult.d.ts │ ├── ISpeechGrammar.d.ts │ ├── ISpeechGrammarList.d.ts │ ├── ISpeechRecoginitionResult.d.ts │ ├── ISpeechRecognition.d.ts │ └── ISpeechRecognitionAlternative.d.ts │ ├── entities.d.ts │ ├── entities │ ├── SpeechGrammarList.d.ts │ ├── SpeechRecognitionEvent.d.ts │ └── SpeechRecognitionResult.d.ts │ ├── helpers.d.ts │ └── helpers │ └── LanguageResolver.d.ts ├── webpack.config.js ├── webpack.config.prod.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/README.md -------------------------------------------------------------------------------- /dist/speech-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/dist/speech-polyfill.js -------------------------------------------------------------------------------- /dist/speech-polyfill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/dist/speech-polyfill.min.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/index.js -------------------------------------------------------------------------------- /js/src/SpeechRecognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/js/src/SpeechRecognition.js -------------------------------------------------------------------------------- /js/src/SpeechRecognitionEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/js/src/SpeechRecognitionEvent.js -------------------------------------------------------------------------------- /js/src/contracts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/src/contracts/ICoginitiveServiceSpeechHypothesis.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/src/contracts/ICoginitiveServiceSpeechResult.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/src/contracts/ISpeechGrammar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/src/contracts/ISpeechGrammarList.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/src/contracts/ISpeechRecoginitionResult.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/src/contracts/ISpeechRecognition.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/src/contracts/ISpeechRecognitionAlternative.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/src/contracts/ISpeechRecognitionResultList.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/src/entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/js/src/entities.js -------------------------------------------------------------------------------- /js/src/entities/SpeechGrammarList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/js/src/entities/SpeechGrammarList.js -------------------------------------------------------------------------------- /js/src/entities/SpeechRecognitionEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/js/src/entities/SpeechRecognitionEvent.js -------------------------------------------------------------------------------- /js/src/entities/SpeechRecognitionResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/js/src/entities/SpeechRecognitionResult.js -------------------------------------------------------------------------------- /js/src/entities/SpeechRecognitionResultList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/js/src/entities/SpeechRecognitionResultList.js -------------------------------------------------------------------------------- /js/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/js/src/helpers.js -------------------------------------------------------------------------------- /js/src/helpers/LanguageResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/js/src/helpers/LanguageResolver.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/package.json -------------------------------------------------------------------------------- /src/SpeechRecognition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/SpeechRecognition.ts -------------------------------------------------------------------------------- /src/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/contracts.ts -------------------------------------------------------------------------------- /src/contracts/ICoginitiveServiceSpeechHypothesis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/contracts/ICoginitiveServiceSpeechHypothesis.ts -------------------------------------------------------------------------------- /src/contracts/ICoginitiveServiceSpeechResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/contracts/ICoginitiveServiceSpeechResult.ts -------------------------------------------------------------------------------- /src/contracts/ISpeechGrammar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/contracts/ISpeechGrammar.ts -------------------------------------------------------------------------------- /src/contracts/ISpeechGrammarList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/contracts/ISpeechGrammarList.ts -------------------------------------------------------------------------------- /src/contracts/ISpeechRecoginitionResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/contracts/ISpeechRecoginitionResult.ts -------------------------------------------------------------------------------- /src/contracts/ISpeechRecognition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/contracts/ISpeechRecognition.ts -------------------------------------------------------------------------------- /src/contracts/ISpeechRecognitionAlternative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/contracts/ISpeechRecognitionAlternative.ts -------------------------------------------------------------------------------- /src/entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/entities.ts -------------------------------------------------------------------------------- /src/entities/SpeechGrammarList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/entities/SpeechGrammarList.ts -------------------------------------------------------------------------------- /src/entities/SpeechRecognitionEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/entities/SpeechRecognitionEvent.ts -------------------------------------------------------------------------------- /src/entities/SpeechRecognitionResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/entities/SpeechRecognitionResult.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/helpers/LanguageResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/src/helpers/LanguageResolver.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/src/SpeechRecognition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/SpeechRecognition.d.ts -------------------------------------------------------------------------------- /types/src/contracts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/contracts.d.ts -------------------------------------------------------------------------------- /types/src/contracts/ICoginitiveServiceSpeechHypothesis.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/contracts/ICoginitiveServiceSpeechHypothesis.d.ts -------------------------------------------------------------------------------- /types/src/contracts/ICoginitiveServiceSpeechResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/contracts/ICoginitiveServiceSpeechResult.d.ts -------------------------------------------------------------------------------- /types/src/contracts/ISpeechGrammar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/contracts/ISpeechGrammar.d.ts -------------------------------------------------------------------------------- /types/src/contracts/ISpeechGrammarList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/contracts/ISpeechGrammarList.d.ts -------------------------------------------------------------------------------- /types/src/contracts/ISpeechRecoginitionResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/contracts/ISpeechRecoginitionResult.d.ts -------------------------------------------------------------------------------- /types/src/contracts/ISpeechRecognition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/contracts/ISpeechRecognition.d.ts -------------------------------------------------------------------------------- /types/src/contracts/ISpeechRecognitionAlternative.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/contracts/ISpeechRecognitionAlternative.d.ts -------------------------------------------------------------------------------- /types/src/entities.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/entities.d.ts -------------------------------------------------------------------------------- /types/src/entities/SpeechGrammarList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/entities/SpeechGrammarList.d.ts -------------------------------------------------------------------------------- /types/src/entities/SpeechRecognitionEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/entities/SpeechRecognitionEvent.d.ts -------------------------------------------------------------------------------- /types/src/entities/SpeechRecognitionResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/entities/SpeechRecognitionResult.d.ts -------------------------------------------------------------------------------- /types/src/helpers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/types/src/helpers.d.ts -------------------------------------------------------------------------------- /types/src/helpers/LanguageResolver.d.ts: -------------------------------------------------------------------------------- 1 | export declare const resolveLang: (langHint: string) => any; 2 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/webpack.config.prod.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anteloe/speech-polyfill/HEAD/yarn.lock --------------------------------------------------------------------------------