teleport.d.ts 745 B

12345678910111213
  1. import type { ExtractPropTypes } 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 TeleportInstance = InstanceType<typeof Teleport> & unknown;