7 lines
323 B
TypeScript
7 lines
323 B
TypeScript
/**
|
|
* A re-export of `react-native-webview` that supports optional dependency.
|
|
*/
|
|
declare let module: undefined | typeof import('react-native-webview').WebView;
|
|
export default module;
|
|
export type { WebView as RNWebView, WebViewProps as RNWebViewProps } from 'react-native-webview';
|
|
//# sourceMappingURL=RNWebView.d.ts.map
|