Removed text-to-speech - capacitor

This commit is contained in:
Max Lynch 2021-09-13 15:55:59 -05:00
parent 270af74627
commit 0b21fa8142

View File

@ -1,64 +0,0 @@
import { Injectable } from '@angular/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
export interface TTSOptions {
/** text to speak */
text: string;
/** a string like 'en-US', 'zh-CN', etc */
locale?: string;
/** speed rate, 0 ~ 1 */
rate?: number;
}
/**
* @name Text To Speech
* @description
* Text to Speech plugin
*
* @usage
* ```typescript
* import { TextToSpeech } from '@ionic-native/text-to-speech/ngx';
*
* constructor(private tts: TextToSpeech) { }
*
* ...
*
* this.tts.speak('Hello World')
* .then(() => console.log('Success'))
* .catch((reason: any) => console.log(reason));
*
* ```
* @interfaces
* TTSOptions
*/
@Plugin({
pluginName: 'Text To Speech',
plugin: 'cordova-plugin-tts',
pluginRef: 'TTS',
repo: 'https://github.com/vilic/cordova-plugin-tts',
platforms: ['Android', 'iOS', 'Windows Phone 8'],
})
@Injectable()
export class TextToSpeech extends IonicNativePlugin {
/**
* This function speaks
* @param textOrOptions {string | TTSOptions} Text to speak or TTSOptions
* @return {Promise<any>} Returns a promise that resolves when the speaking finishes
*/
@Cordova({
successIndex: 1,
errorIndex: 2,
})
speak(textOrOptions: string | TTSOptions): Promise<any> {
return;
}
/**
* Stop any current TTS playback
* @return {Promise<any>}
*/
@Cordova()
stop(): Promise<any> {
return;
}
}