2015-07-28 11:07:45 -07: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 07:47:52 -08:00
|
|
|
#import <React/RCTBridgeModule.h>
|
2015-07-28 11:07:45 -07:00
|
|
|
|
2015-08-08 02:58:30 -07:00
|
|
|
@interface RCTDevLoadingView : NSObject <RCTBridgeModule>
|
2015-07-28 11:07:45 -07:00
|
|
|
|
2015-09-04 03:44:55 -07:00
|
|
|
+ (void)setEnabled:(BOOL)enabled;
|
2016-10-13 11:42:30 -07:00
|
|
|
- (void)updateProgress:(RCTLoadingProgress *)progress;
|
2015-09-04 03:44:55 -07:00
|
|
|
|
2015-07-28 11:07:45 -07:00
|
|
|
@end
|