mirror of
https://github.com/status-im/react-native-webview-bridge.git
synced 2026-08-31 13:21:15 +00:00
19 lines
308 B
Objective-C
19 lines
308 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Ali Najafizadeh.
|
|
* Ali Najafizadeh
|
|
* MIT
|
|
*/
|
|
|
|
#import "RCTWebView.h"
|
|
#import "RCTBridge.h"
|
|
|
|
@class RCTEventDispatcher;
|
|
|
|
@interface WebViewEx : RCTWebView
|
|
|
|
- (void)eval:(NSString *)value;
|
|
- (void)send:(id)message;
|
|
- (void)onMessage:(RCTResponseSenderBlock)callback;
|
|
|
|
@end
|