@fesjs/fes-design
Version:
fes-design for PC
42 lines (41 loc) • 1.67 kB
TypeScript
import { type PropType } from 'vue';
import type { ExtractPublicPropTypes } from '../_util/interface';
export declare const stepProps: {
readonly description: {
readonly type: StringConstructor;
};
readonly title: {
readonly type: StringConstructor;
};
readonly status: {
readonly type: PropType<"error" | "wait" | "process" | "finish">;
};
};
export type StepProps = ExtractPublicPropTypes<typeof stepProps>;
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
readonly description: {
readonly type: StringConstructor;
};
readonly title: {
readonly type: StringConstructor;
};
readonly status: {
readonly type: PropType<"error" | "wait" | "process" | "finish">;
};
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clickStep"[], "clickStep", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
readonly description: {
readonly type: StringConstructor;
};
readonly title: {
readonly type: StringConstructor;
};
readonly status: {
readonly type: PropType<"error" | "wait" | "process" | "finish">;
};
}>> & Readonly<{
onClickStep?: (...args: any[]) => any;
}>, {}, {}, {
CloseOutlined: (props?: import("../icon/IconWrapper").IconProps) => import("vue/jsx-runtime").JSX.Element;
CheckOutlined: (props?: import("../icon/IconWrapper").IconProps) => import("vue/jsx-runtime").JSX.Element;
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;