UNPKG

327 BTypeScriptView Raw
1import { ModalProps } from './modal';
2export declare type ModalShowProps = Omit<ModalProps, 'visible' | 'destroyOnClose' | 'forceRender'>;
3export declare type ModalShowHandler = {
4 close: () => void;
5};
6export declare const closeFnSet: Set<() => void>;
7export declare function show(props: ModalShowProps): ModalShowHandler;