mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
685c15a955
Summary: Follow pattern laid out by Kevin in D16001262 to convert a Core OSS native module to use TM generated spec. Reviewed By: RSNara Differential Revision: D16016391 fbshipit-source-id: f517777be44c68367d786f04c50cf12f240eed00
16 lines
355 B
Objective-C
16 lines
355 B
Objective-C
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTBridge.h>
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
@interface RCTDeviceInfo : NSObject <RCTBridgeModule, RCTInvalidating>
|
|
|
|
@end
|