//
//  RCTNuanceTextToSpeech.h
//  RCTNuanceTextToSpeech
//
//  Created by Dominique van Mil on 27/01/2017.
//  Copyright © 2017 SIMDO. All rights reserved.
//

#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#import "NuanceTextToSpeechDelegate.h"
#import <React/RCTEventEmitter.h>
#else
#import "RCTBridgeModule.h"
#import "NuanceTextToSpeechDelegate.h"
#import <React/RCTEventEmitter.h>
#endif

@interface RCTNuanceTextToSpeech : RCTEventEmitter <RCTBridgeModule, TtsDelegate>

@property (nonatomic, strong) NuanceTextToSpeechDelegate* nuanceTextToSpeechDelegate;

@end
