123456789101112131415 |
-
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
-
- @interface RNNStore : NSObject
-
- @property (nonatomic, strong) NSMutableArray *modalsToDismissArray;
- @property (atomic) BOOL isReadyToReceiveCommands;
-
- - (UIViewController*)findContainerForId:(NSString*)containerId;
- - (void)setContainer:(UIViewController*)viewController containerId:(NSString*)containerId;
- - (void)removeContainer:(NSString*)containerId;
-
- @end
|