UNPKG

react-native-multiple-modals

Version:

Native implementation with the ability to display multiple Modals

11 lines 426 B
import type { FC } from 'react'; import type { ModalViewProps } from './types'; export type ModalViewWebProps = Omit<ModalViewProps, 'statusBar' | 'disableDefaultStatusBarIOS' | 'statusBarTranslucent'> & { modalId?: string; }; export declare enum DismissalSource { BackButton = "BackButton", Backdrop = "Backdrop" } export declare const ModalView: FC<ModalViewWebProps>; //# sourceMappingURL=ModalView.web.d.ts.map