teleport.d.ts 1.1 KB

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