UNPKG

antd-mobile-taro-ui

Version:

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

19 lines (18 loc) 666 B
/// <reference types="react" /> import './dialog.less'; import { show } from './show'; import { alert } from './alert'; import { confirm } from './confirm'; import { clear } from './clear'; export type { DialogProps } from './dialog'; export type { Action } from './dialog-action-button'; export type { DialogShowProps, DialogShowHandler } from './show'; export type { DialogAlertProps } from './alert'; export type { DialogConfirmProps } from './confirm'; declare const _default: import("react").FC<import("./dialog").DialogProps> & { show: typeof show; alert: typeof alert; confirm: typeof confirm; clear: typeof clear; }; export default _default;