steps.vue.d.ts 1020 B

12345678910111213141516171819202122232425262728
  1. import { StepsProps, StepsStatus } from "./steps.js";
  2. import * as _$vue from "vue";
  3. //#region ../../packages/components/steps/src/steps.vue.d.ts
  4. declare var __VLS_1: {};
  5. type __VLS_Slots = {} & {
  6. default?: (props: typeof __VLS_1) => any;
  7. };
  8. declare const __VLS_base: _$vue.DefineComponent<StepsProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
  9. change: (newVal: number, oldVal: number) => void;
  10. }, string, _$vue.PublicProps, Readonly<StepsProps> & Readonly<{
  11. onChange?: ((newVal: number, oldVal: number) => any) | undefined;
  12. }>, {
  13. space: number | string;
  14. active: number;
  15. direction: "horizontal" | "vertical";
  16. finishStatus: StepsStatus;
  17. processStatus: StepsStatus;
  18. }, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
  19. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  20. declare const _default: typeof __VLS_export;
  21. type __VLS_WithSlots<T, S> = T & {
  22. new (): {
  23. $slots: S;
  24. };
  25. };
  26. //#endregion
  27. export { _default as default };