mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboOs.git
synced 2026-06-19 18:16:17 +00:00
18 lines
429 B
JavaScript
18 lines
429 B
JavaScript
|
|
/**
|
||
|
|
* Delegate for speaking using the standard TTS system.
|
||
|
|
* @class BasicSpeakDelegate
|
||
|
|
* @memberof jibo.mim
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Speak text, passing the options directly to the TTS system.
|
||
|
|
* @method jibo.mim.BasicSpeakDelegate#stop
|
||
|
|
* @param {any} options Speech options, including text.
|
||
|
|
* @return {Promise}
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Stop the TTS.
|
||
|
|
* @method jibo.mim.BasicSpeakDelegate#stop
|
||
|
|
*/
|