UNPKG

antd-mobile-taro-ui

Version:

以antd-mobile为设计标准,基于taro框架的微信小程序组件库

8 lines (7 loc) 334 B
import { DialogProps } from './dialog'; export declare type DialogShowProps = Omit<DialogProps, 'visible' | 'destroyOnClose' | 'forceRender'>; export declare type DialogShowHandler = { close: () => void; }; export declare const closeFnSet: Set<() => void>; export declare function show(props: DialogShowProps): DialogShowHandler;