interface divider { /** * 文本 */ content: string /** * 方向: 垂直(vertical)、水平(horizontal) */ direction: 'horizontal' | 'vertical' /** * 线条 * @see CSS/border-style * @see https://developer.mozilla.org/zh-CN/docs/Web/CSS/border-style */ borderStyle: 'solid' | 'dotted' | 'none' | 'info' /** * 对齐方式: 左对齐(left)、右对齐(right)、居中对齐(center) */ contentPosition: 'left' | 'right' | 'center' /** * 是否隐藏 */ hidden: boolean }