Skip to content
CDVTTS.h 413 B
Newer Older
wangqinghua's avatar
wangqinghua committed
/*
	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