UNPKG

antd-mini

Version:

antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。

10 lines (9 loc) 304 B
import { IBaseProps } from '../_util/base'; /** * @description 加载,用于提示局部或页面在加载中。 */ export interface IMaskProps extends IBaseProps { show: boolean; onMaskTap?: (v: Record<string, unknown>) => void; } export declare const MaskDefaultProps: Partial<IMaskProps>;