/** * 基础尺寸类型 */ export type SizeType = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge' /** * 颜色类型 */ export type ColorType = | 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'default' /** * 位置类型 */ export type PlacementType = | 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end' | 'right' | 'right-start' | 'right-end'