cozy-intent
Version:
Event-based library allowing interactions between React-Native and React applications
10 lines (9 loc) • 377 B
TypeScript
import React, { ReactElement } from 'react';
import { NativeMethodsRegister, NativeService } from '../../api';
interface Props {
children: React.ReactChild;
localMethods: NativeMethodsRegister;
}
export declare const getNativeIntentService: () => NativeService;
export declare const NativeIntentProvider: ({ children, localMethods }: Props) => ReactElement;
export {};