Files
IOT_WEB/node_modules/element-plus/es/components/timeline/src/timeline.d.ts
T
2026-08-21 15:36:24 +08:00

26 lines
1.6 KiB
TypeScript

import { EpPropFinalized, EpPropMergeType } from "../../../utils/vue/props/types.js";
import * as _$vue from "vue";
import { ExtractPropTypes, ExtractPublicPropTypes } from "vue";
//#region ../../packages/components/timeline/src/timeline.d.ts
declare const timelineProps: {
readonly mode: EpPropFinalized<StringConstructor, "end" | "start" | "alternate" | "alternate-reverse", unknown, "start", boolean>;
readonly reverse: BooleanConstructor;
};
type TimelineProps = ExtractPropTypes<typeof timelineProps>;
type TimelinePropsPublic = ExtractPublicPropTypes<typeof timelineProps>;
declare const Timeline: _$vue.DefineComponent<ExtractPropTypes<{
readonly mode: EpPropFinalized<StringConstructor, "end" | "start" | "alternate" | "alternate-reverse", unknown, "start", boolean>;
readonly reverse: BooleanConstructor;
}>, () => _$vue.VNode<_$vue.RendererNode, _$vue.RendererElement, {
[key: string]: any;
}>, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<ExtractPropTypes<{
readonly mode: EpPropFinalized<StringConstructor, "end" | "start" | "alternate" | "alternate-reverse", unknown, "start", boolean>;
readonly reverse: BooleanConstructor;
}>> & Readonly<{}>, {
readonly reverse: boolean;
readonly mode: EpPropMergeType<StringConstructor, "end" | "start" | "alternate" | "alternate-reverse", unknown>;
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
type TimelineInstance = InstanceType<typeof Timeline> & unknown;
//#endregion
export { TimelineInstance, TimelineProps, TimelinePropsPublic, Timeline as default, timelineProps };