Newer
Older
/*
Cordova Text-to-Speech Plugin
https://github.com/vilic/cordova-plugin-tts
by VILIC VANE
https://github.com/vilic
MIT License
*/
#import <Cordova/CDV.h>
#import <AVFoundation/AVFoundation.h>
@interface CDVTTS : CDVPlugin <AVSpeechSynthesizerDelegate> {
AVSpeechSynthesizer* synthesizer;
NSString* lastCallbackId;
NSString* callbackId;
}
- (void)speak:(CDVInvokedUrlCommand*)command;
@end