jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/Mask/props.d.ts
2024-11-10 15:01:22 +08:00

13 lines
398 B
TypeScript

/* eslint-disable @typescript-eslint/no-explicit-any */
import { IBaseProps } from '../_base';
/**
* @description 加载,用于提示局部或页面在加载中。
*/
export interface IMaskProps extends IBaseProps {
maskZindex: string;
type: 'product' | 'market';
show: boolean;
onMaskTap: (v: Record<string, any>) => void;
}
export declare const MaskDefaultProps: Partial<IMaskProps>;