RNPSpeechRecognition.h 364B

123456789101112131415161718
  1. //
  2. // RNPSpeechRecognition.h
  3. // ReactNativePermissions
  4. //
  5. // Created by Tres Trantham on 01/10/17.
  6. // Copyright © 2017 Tres Trantham. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "RCTConvert+RNPStatus.h"
  10. @interface RNPSpeechRecognition : NSObject
  11. + (NSString *)getStatus;
  12. + (void)request:(void (^)(NSString *))completionHandler;
  13. @end