mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
b71db11554
Summary: Updated networking and geolocation to use the new events system. Reviewed By: bestander Differential Revision: D3346129 fbshipit-source-id: 957716e54d7af8c4a6783f684098e92e92f19654
19 lines
486 B
Objective-C
19 lines
486 B
Objective-C
/**
|
|
* 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.
|
|
*/
|
|
|
|
#import <SystemConfiguration/SystemConfiguration.h>
|
|
|
|
#import "RCTEventEmitter.h"
|
|
|
|
@interface RCTNetInfo : RCTEventEmitter
|
|
|
|
- (instancetype)initWithHost:(NSString *)host;
|
|
|
|
@end
|