mirror of
https://github.com/status-im/react-native.git
synced 2025-01-19 05:51:01 +00:00
13 lines
279 B
C
13 lines
279 B
C
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
#import "RCTBridgeModule.h"
|
||
|
|
||
|
@interface RCTSourceCode : NSObject <RCTBridgeModule>
|
||
|
|
||
|
@property (nonatomic, copy) NSString *scriptText;
|
||
|
@property (nonatomic, copy) NSURL *scriptURL;
|
||
|
|
||
|
@end
|