index.js 210 B

1234567891011
  1. import {
  2. NativeModules
  3. } from 'react-native';
  4. let XunFeiModule = NativeModules.XunFeiAndroid;
  5. export default class XunFei {
  6. static textToSpeech(text) {
  7. XunFeiModule.textToSpeech(text);
  8. }
  9. }