steps.d.ts 1.7 KB

123456789101112131415161718192021222324252627
  1. import type Steps from './steps.vue';
  2. import type { ExtractPropTypes } from 'vue';
  3. export declare const stepsProps: {
  4. readonly space: import("element-plus/es/utils").EpPropFinalized<readonly [NumberConstructor, StringConstructor], unknown, unknown, "", boolean>;
  5. readonly active: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
  6. readonly direction: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "horizontal" | "vertical", unknown, "horizontal", boolean>;
  7. readonly alignCenter: {
  8. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>>;
  9. readonly required: false;
  10. readonly validator: ((val: unknown) => boolean) | undefined;
  11. __epPropKey: true;
  12. };
  13. readonly simple: {
  14. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>>;
  15. readonly required: false;
  16. readonly validator: ((val: unknown) => boolean) | undefined;
  17. __epPropKey: true;
  18. };
  19. readonly finishStatus: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "wait" | "error" | "finish" | "success" | "process", unknown, "finish", boolean>;
  20. readonly processStatus: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "wait" | "error" | "finish" | "success" | "process", unknown, "process", boolean>;
  21. };
  22. export type StepsProps = ExtractPropTypes<typeof stepsProps>;
  23. export declare const stepsEmits: {
  24. change: (newVal: number, oldVal: number) => boolean;
  25. };
  26. export type StepsEmits = typeof stepsEmits;
  27. export type StepsInstance = InstanceType<typeof Steps> & unknown;