time-select.vue.d.ts 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import { IconPropType } from "../../../utils/vue/icon.js";
  2. import { PopperEffect } from "../../popper/src/popper.js";
  3. import { TimeSelectProps } from "./time-select.js";
  4. import * as _$vue from "vue";
  5. //#region ../../packages/components/time-select/src/time-select.vue.d.ts
  6. declare const __VLS_export: _$vue.DefineComponent<TimeSelectProps, {
  7. /**
  8. * @description blur the Input component
  9. */
  10. blur: () => void;
  11. /**
  12. * @description focus the Input component
  13. */
  14. focus: () => void;
  15. }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
  16. "update:modelValue": (...args: any[]) => void;
  17. change: (...args: any[]) => void;
  18. focus: (...args: any[]) => void;
  19. blur: (...args: any[]) => void;
  20. clear: (...args: any[]) => void;
  21. }, string, _$vue.PublicProps, Readonly<TimeSelectProps> & Readonly<{
  22. "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
  23. onChange?: ((...args: any[]) => any) | undefined;
  24. onFocus?: ((...args: any[]) => any) | undefined;
  25. onBlur?: ((...args: any[]) => any) | undefined;
  26. onClear?: ((...args: any[]) => any) | undefined;
  27. }>, {
  28. disabled: boolean;
  29. clearable: boolean;
  30. clearIcon: IconPropType;
  31. prefixIcon: IconPropType;
  32. end: string;
  33. start: string;
  34. valueOnClear: string | number | boolean | Function | null;
  35. effect: PopperEffect;
  36. popperClass: string;
  37. popperStyle: string | _$vue.CSSProperties;
  38. editable: boolean;
  39. format: string;
  40. step: string;
  41. }, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
  42. declare const _default: typeof __VLS_export;
  43. //#endregion
  44. export { _default as default };