mirror of
https://github.com/status-im/react-native-webview.git
synced 2025-02-23 17:28:37 +00:00
9 lines
265 B
TypeScript
9 lines
265 B
TypeScript
|
import { ComponentType } from 'react';
|
||
|
// eslint-disable-next-line
|
||
|
import { IOSWebViewProps, AndroidWebViewProps } from './lib/WebViewTypes';
|
||
|
|
||
|
declare const WebView: ComponentType<IOSWebViewProps & AndroidWebViewProps>;
|
||
|
|
||
|
export { WebView };
|
||
|
export default WebView;
|