// Copyright 2004-present Facebook. All Rights Reserved. #import @protocol RCTJavaScriptExecutor; @interface RCTRootView : UIView @property (nonatomic, strong) NSURL *scriptURL; @property (nonatomic, copy) NSString *moduleName; @property (nonatomic, copy) NSDictionary *initialProperties; @property (nonatomic, strong) id executor; /** * Reload this root view, or all root views, respectively. */ - (void)reload; + (void)reloadAll; @end