UNPKG

element-pro-components

Version:

a component library for Vue 3 base on element-plus

16 lines (15 loc) 576 B
import type { PropType } from 'vue'; import type { ComponentSize } from 'element-plus'; import type { IDescriptionsColumns } from './type'; export declare const descriptionsProps: { columns: PropType<IDescriptionsColumns>; detail: ObjectConstructor; border: BooleanConstructor; column: NumberConstructor; direction: PropType<"vertical" | "horizontal">; size: PropType<ComponentSize>; title: StringConstructor; extra: StringConstructor; align: PropType<"left" | "center" | "right">; labelAlign: PropType<"left" | "center" | "right">; };