UNPKG

ant-design-vue

Version:

An enterprise-class UI design language and Vue-based implementation

15 lines (14 loc) 400 B
import type { TransitionNameType, AnimationType } from '../interface'; export interface MaskProps { prefixCls: string; visible?: boolean; zIndex?: number; mask?: boolean; maskAnimation?: AnimationType; maskTransitionName?: TransitionNameType; } declare function Mask(props: MaskProps): JSX.Element; declare namespace Mask { var displayName: string; } export default Mask;