mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-02 04:08:10 +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
|
||
|
}
|