@opensig/opendesign
Version:
62 lines (61 loc) • 2.06 kB
TypeScript
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
icon?(_: {}): any;
title?(_: {}): any;
default?(_: {}): any;
};
refs: {
stepItemHeadRef: HTMLDivElement;
};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
readonly title: {
readonly type: StringConstructor;
};
readonly description: {
readonly type: StringConstructor;
};
readonly status: {
readonly type: import('vue').PropType<import('./types').StepItemStatusT>;
readonly default: "finished";
};
readonly stepIndex: {
readonly type: NumberConstructor;
readonly required: true;
};
readonly icon: {
readonly type: import('vue').PropType<boolean | import('vue').Component>;
};
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
readonly title: {
readonly type: StringConstructor;
};
readonly description: {
readonly type: StringConstructor;
};
readonly status: {
readonly type: import('vue').PropType<import('./types').StepItemStatusT>;
readonly default: "finished";
};
readonly stepIndex: {
readonly type: NumberConstructor;
readonly required: true;
};
readonly icon: {
readonly type: import('vue').PropType<boolean | import('vue').Component>;
};
}>> & Readonly<{}>, {
readonly status: "waiting" | "finished" | "failed" | "processing";
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
stepItemHeadRef: HTMLDivElement;
}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};