Files

10 lines
304 B
TypeScript
Raw Permalink Normal View History

2025-08-18 09:11:51 +08:00
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>;