/** * @description border line type enum * @author 阿怪 * @date 2023/4/20 11:17 * @version v1.0.0 * * 江湖的业务千篇一律,复杂的代码好几百行。 */ export enum lineType { top = 'top', left = 'left', right = 'right', bottom = 'bottom', } export const baseLineClass = 'm-border-line';