//
//  JailMonkey.h
//  Trackops
//
//  Created by Gant Laborde on 7/19/16.
//  Copyright © 2016 Facebook. All rights reserved.
//
#import "JB.h"
#if __has_include(<React/RCTBridgeModule.h>)
  #import <React/RCTBridgeModule.h>
#elif __has_include("React/RCTBridgeModule.h")
  #import "React/RCTBridgeModule.h"
#else
  #import "RCTBridgeModule.h"
#endif


@interface JailMonkey : NSObject <RCTBridgeModule>
+(void)showSecureScreen:(UIWindow*) window;
+(void)hideSecureScreen:(UIWindow*) window;


@end
