/** 对齐枚举 */ export enum AlignEnum { CENTER = 'center', START = 'start', END = 'end', } export type Placement = | 'top-start' | 'top' | 'top-end' | 'right-start' | 'right' | 'right-end' | 'bottom-start' | 'bottom' | 'bottom-end' | 'left-start' | 'left' | 'left-end' /** 位置枚举 */ export enum PlacementEnum { TOP_START = 'top-start', TOP = 'top', TOP_END = 'top-end', RIGHT_START = 'right-start', RIGHT = 'right', RIGHT_END = 'right-end', BOTTOM_START = 'bottom-start', BOTTOM = 'bottom', BOTTOM_END = 'bottom-end', LEFT_START = 'left-start', LEFT = 'left', LEFT_END = 'left-end', }