2015-07-28 18:07:45 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
|
|
|
|
2016-11-23 15:47:52 +00:00
|
|
|
#import <React/RCTBridgeModule.h>
|
2015-07-28 18:07:45 +00:00
|
|
|
|
2017-04-20 15:20:03 +00:00
|
|
|
@class RCTLoadingProgress;
|
|
|
|
|
2015-08-08 09:58:30 +00:00
|
|
|
@interface RCTDevLoadingView : NSObject <RCTBridgeModule>
|
2015-07-28 18:07:45 +00:00
|
|
|
|
2015-09-04 10:44:55 +00:00
|
|
|
+ (void)setEnabled:(BOOL)enabled;
|
2017-05-02 16:52:47 +00:00
|
|
|
- (void)showWithURL:(NSURL *)URL;
|
2016-10-13 18:42:30 +00:00
|
|
|
- (void)updateProgress:(RCTLoadingProgress *)progress;
|
2017-05-02 16:52:47 +00:00
|
|
|
- (void)hide;
|
2015-09-04 10:44:55 +00:00
|
|
|
|
2015-07-28 18:07:45 +00:00
|
|
|
@end
|