UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

18 lines (17 loc) 538 B
import type { CSSProperties } from 'vue'; import type { TransitionNameType, AnimationType } from '../interface'; export interface MaskProps { prefixCls: string; visible?: boolean; zIndex?: number; mask?: boolean; maskAnimation?: AnimationType; maskTransitionName?: TransitionNameType; onClick?: (e: MouseEvent) => void; maskStyle?: CSSProperties; } declare function Mask(props: MaskProps): import("vue/jsx-runtime").JSX.Element; declare namespace Mask { var displayName: string; } export default Mask;