newsmemory-ios-sdk/Frameworks/TextToSpeech.xcframework/ios-arm64/Headers/TextToSpeech.h

21 lines
589 B
C
Raw Normal View History

2024-05-02 15:08:24 +00:00
//
// TextToSpeech.h
// TextToSpeech
//
// Created by Anton Krasovsky on 27/09/2016.
// Copyright © 2016 Anton Krasovsky. All rights reserved.
//
#import <React/RCTBridgeModule.h>
#import <React/RCTEventEmitter.h>
@import AVFoundation;
@interface TextToSpeech : RCTEventEmitter <RCTBridgeModule, AVSpeechSynthesizerDelegate>
@property (nonatomic, strong) AVSpeechSynthesizer *synthesizer;
@property (nonatomic, strong) AVSpeechSynthesisVoice *defaultVoice;
@property (nonatomic) float defaultRate;
@property (nonatomic) float defaultPitch;
@property (nonatomic) bool ducking;
@end