mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
13 lines
329 B
TypeScript
13 lines
329 B
TypeScript
import { ElementUIComponent } from './component'
|
|
|
|
export type ContentPosition = 'left' | 'center' | 'right'
|
|
|
|
/** Divider Component */
|
|
export declare class ElDivider extends ElementUIComponent {
|
|
/** enable vertical divider */
|
|
vertical: boolean
|
|
|
|
/** customize the content on the divider line */
|
|
posiiton: ContentPosition
|
|
}
|