UNPKG

@qeepsake/react-navigation-overlay

Version:

Don't we all wish that React Navigation had awesome Overlays like React Native Navigation ? Now it does 💪

11 lines (10 loc) • 389 B
import { ReactElement, RefObject } from "react"; export interface OverlayRefHandle { show: (component: (...props: any) => ReactElement, props?: any) => void; close: () => void; } export declare const Overlay: { register: (ref: RefObject<OverlayRefHandle>) => void; show: (component: (...props: any) => ReactElement, props: any) => void; close: () => void; };