@talkjs/react-native
Version:
Official TalkJS SDK for React Native
17 lines • 670 B
TypeScript
import React from 'react';
import { WebView as RNWebView } from 'react-native-webview';
import type { ReactNode } from 'react';
import type { CustomHandlers, TalkHandlers } from './Handlers';
type WebViewProps = {
customHandlers: CustomHandlers;
talkHandlers: TalkHandlers;
disableZoom: boolean;
isHeadless?: boolean;
loadingComponent?: ReactNode;
pendingScripts: string[];
keyboardVerticalOffset: number;
hideKeyboardAccessoryView: boolean;
};
declare const forwardedWebView: React.ForwardRefExoticComponent<WebViewProps & React.RefAttributes<RNWebView<{}>>>;
export { forwardedWebView as WebView };
//# sourceMappingURL=WebView.d.ts.map