cozy-intent
Version:
Event-based library allowing interactions between React-Native and React applications
11 lines (10 loc) • 421 B
TypeScript
import React, { ReactElement } from 'react';
import { WebviewService, WebviewMethods } from '../../api';
interface Props {
children?: React.ReactChild;
methods?: WebviewMethods;
setBarContext?: (webviewContext: WebviewService) => void;
webviewService?: WebviewService;
}
export declare const WebviewIntentProvider: ({ children, methods, setBarContext, webviewService }: Props) => ReactElement;
export {};