2024-12-01 11:56:54 +00:00
|
|
|
|
import { IBaseProps } from '../_util/base';
|
2024-11-10 07:01:22 +00:00
|
|
|
|
/**
|
|
|
|
|
* @description 加载,用于提示局部或页面在加载中。
|
|
|
|
|
*/
|
|
|
|
|
export interface IMaskProps extends IBaseProps {
|
2024-12-01 11:56:54 +00:00
|
|
|
|
show: boolean;
|
|
|
|
|
onMaskTap?: (v: Record<string, unknown>) => void;
|
2024-11-10 07:01:22 +00:00
|
|
|
|
}
|
|
|
|
|
export declare const MaskDefaultProps: Partial<IMaskProps>;
|