UNPKG

element-plus

Version:

A Component Library for Vue 3

19 lines (18 loc) 1.31 kB
import type { ExtractPropTypes } from 'vue'; import type Description from './description.vue'; export declare const descriptionProps: { readonly border: BooleanConstructor; readonly column: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 3, boolean>; readonly direction: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "horizontal" | "vertical", unknown, "horizontal", boolean>; readonly size: { readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly title: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>; readonly extra: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>; readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>; }; export type DescriptionProps = ExtractPropTypes<typeof descriptionProps>; export type DescriptionInstance = InstanceType<typeof Description> & unknown;