UNPKG

element-plus

Version:

A Component Library for Vue 3

16 lines (15 loc) 1.55 kB
import type { ExtractPropTypes } from 'vue'; import type TimelineItem from './timeline-item.vue'; export declare const timelineItemProps: { readonly timestamp: import("element-plus/es/utils").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>; readonly hideTimestamp: import("element-plus/es/utils").BuildPropReturn<BooleanConstructor, false, unknown, unknown, unknown>; readonly center: import("element-plus/es/utils").BuildPropReturn<BooleanConstructor, false, unknown, unknown, unknown>; readonly placement: import("element-plus/es/utils").BuildPropReturn<StringConstructor, "bottom", unknown, unknown, unknown>; readonly type: import("element-plus/es/utils").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>; readonly color: import("element-plus/es/utils").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>; readonly size: import("element-plus/es/utils").BuildPropReturn<StringConstructor, "normal", unknown, unknown, unknown>; readonly icon: import("element-plus/es/utils").BuildPropReturn<import("element-plus/es/utils").PropWrapper<string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>, "", unknown, unknown, unknown>; readonly hollow: import("element-plus/es/utils").BuildPropReturn<BooleanConstructor, false, unknown, unknown, unknown>; }; export declare type TimelineItemProps = ExtractPropTypes<typeof timelineItemProps>; export declare type TimelineItemInstance = InstanceType<typeof TimelineItem>;