hongluan-ui
Version:
Hongluan Component Library for Vue 3
16 lines (15 loc) • 768 B
TypeScript
import type { ExtractPropTypes } from 'vue';
import type { PosInfo } from './types';
export declare const maskProps: {
zIndex: import("hongluan-ui/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
visible: BooleanConstructor;
fill: import("hongluan-ui/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
pos: {
readonly type: import("vue").PropType<PosInfo>;
readonly required: false;
readonly validator: (val: unknown) => boolean;
__epPropKey: true;
};
targetAreaClickable: import("hongluan-ui/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
};
export declare type MaskProps = ExtractPropTypes<typeof maskProps>;