Merge branch 'master' into v5

This commit is contained in:
Daniel
2018-12-01 16:55:01 +01:00
parent 31e4058257
commit 165c3cc211
20 changed files with 904 additions and 192 deletions
+4 -2
View File
@@ -13,7 +13,8 @@ import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
* constructor(private speechkit: SpeechKit) { }
*
*
* this.speechkit.tts('Text to be read out loud', 'ENG-GBR').then(
* // find voice names that match language from: https://developer.nuance.com/public/index.php?task=supportedLanguages
* this.speechkit.tts('Text to be read out loud', 'ENG-GBR', 'Serena').then(
* (msg) => { console.log(msg); },
* (err) => { console.log(err); }
* );
@@ -36,7 +37,8 @@ export class SpeechKit extends IonicNativePlugin {
@Cordova()
tts(
text: string,
language: string
language: string,
voice: string
): Promise<string> { return; }
/**