jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/Mask/props.d.ts

13 lines
398 B
TypeScript
Raw Normal View History

2024-11-10 07:01:22 +00:00
/* 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>;