e802e3b556fcaac907ca0558e3cf191ef1989c9466c7d4c6645e9a852dba4ce1eae48a2cab971382443870e748dab79227f128863b5c8eaf80ab947a1912e3 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
  2. import type { GetDisabledHours, GetDisabledMinutes, GetDisabledSeconds } from '../common/props';
  3. export declare const disabledTimeListsProps: {
  4. readonly disabledHours: {
  5. readonly type: import("vue").PropType<GetDisabledHours>;
  6. readonly required: false;
  7. readonly validator: ((val: unknown) => boolean) | undefined;
  8. __epPropKey: true;
  9. };
  10. readonly disabledMinutes: {
  11. readonly type: import("vue").PropType<GetDisabledMinutes>;
  12. readonly required: false;
  13. readonly validator: ((val: unknown) => boolean) | undefined;
  14. __epPropKey: true;
  15. };
  16. readonly disabledSeconds: {
  17. readonly type: import("vue").PropType<GetDisabledSeconds>;
  18. readonly required: false;
  19. readonly validator: ((val: unknown) => boolean) | undefined;
  20. __epPropKey: true;
  21. };
  22. };
  23. export type DisabledTimeListsProps = ExtractPropTypes<typeof disabledTimeListsProps>;
  24. export type DisabledTimeListsPropsPublic = __ExtractPublicPropTypes<typeof disabledTimeListsProps>;
  25. export declare const timePanelSharedProps: {
  26. readonly visible: BooleanConstructor;
  27. readonly actualVisible: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
  28. readonly format: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  29. };
  30. export type TimePanelSharedProps = ExtractPropTypes<typeof timePanelSharedProps>;
  31. export type TimePanelSharedPropsPublic = __ExtractPublicPropTypes<typeof timePanelSharedProps>;