antd-mobile
Version:
<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />
8 lines (7 loc) • 299 B
TypeScript
import { DialogProps } from './dialog';
export declare type DialogShowProps = Omit<DialogProps, 'visible'>;
export declare type DialogShowHandler = {
close: () => void;
};
export declare const closeFnSet: Set<() => void>;
export declare function show(props: DialogShowProps): DialogShowHandler;