@minto-ai/mt-ui
Version:
UI组件库
19 lines (18 loc) • 437 B
TypeScript
import { ExtractPropTypes } from 'vue';
export declare const overlayProps: {
/**
* 是否显示遮罩层
*/
readonly mask: {
readonly type: BooleanConstructor;
readonly default: true;
};
/**
* 遮罩层层级
*/
readonly zIndex: {
readonly type: NumberConstructor;
readonly default: 2026;
};
};
export type OverlayProps = ExtractPropTypes<typeof overlayProps>;