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
|
||
|
}
|