overlay.d.ts 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. import { EpPropFinalized, EpPropMergeType } from "../../../utils/vue/props/types.js";
  2. import "../../../utils/index.js";
  3. import * as vue from "vue";
  4. import { ExtractPropTypes, ExtractPublicPropTypes } from "vue";
  5. import * as csstype from "csstype";
  6. //#region ../../packages/components/overlay/src/overlay.d.ts
  7. declare const overlayProps: {
  8. readonly mask: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  9. readonly customMaskEvent: BooleanConstructor;
  10. readonly overlayClass: {
  11. readonly type: vue.PropType<EpPropMergeType<(new (...args: any[]) => string | string[] | Record<string, boolean>) | (() => string | string[] | Record<string, boolean>) | ((new (...args: any[]) => string | string[] | Record<string, boolean>) | (() => string | string[] | Record<string, boolean>))[], unknown, unknown>>;
  12. readonly required: false;
  13. readonly validator: ((val: unknown) => boolean) | undefined;
  14. __epPropKey: true;
  15. };
  16. readonly zIndex: {
  17. readonly type: vue.PropType<EpPropMergeType<(new (...args: any[]) => string | number) | (() => csstype.Property.ZIndex | undefined) | ((new (...args: any[]) => string | number) | (() => csstype.Property.ZIndex | undefined))[], unknown, unknown>>;
  18. readonly required: false;
  19. readonly validator: ((val: unknown) => boolean) | undefined;
  20. __epPropKey: true;
  21. };
  22. };
  23. type OverlayProps = ExtractPropTypes<typeof overlayProps>;
  24. type OverlayPropsPublic = ExtractPublicPropTypes<typeof overlayProps>;
  25. declare const overlayEmits: {
  26. click: (evt: MouseEvent) => boolean;
  27. };
  28. type OverlayEmits = typeof overlayEmits;
  29. //#endregion
  30. export { OverlayEmits, OverlayProps, OverlayPropsPublic, overlayEmits, overlayProps };