be601e027e5fc0525da1dfe937d0f0141340580e2b3ad98ccfc17a03455eb5aeba539b58ec7089f748ba3cf7f50a39a765746a5c48b4bfbfb27384f0e03c2b 853 B

1234567891011121314
  1. import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
  2. import type Teleport from './teleport.vue';
  3. export declare const teleportProps: {
  4. readonly to: {
  5. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>>;
  6. readonly required: true;
  7. readonly validator: ((val: unknown) => boolean) | undefined;
  8. __epPropKey: true;
  9. };
  10. readonly disabled: BooleanConstructor;
  11. };
  12. export type TeleportProps = ExtractPropTypes<typeof teleportProps>;
  13. export type TeleportPropsPublic = __ExtractPublicPropTypes<typeof teleportProps>;
  14. export type TeleportInstance = InstanceType<typeof Teleport> & unknown;