arrow.d.ts 989 B

123456789101112131415
  1. import type { ExtractPropTypes } from 'vue';
  2. import type Arrow from './arrow.vue';
  3. export declare const popperArrowProps: {
  4. readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
  5. };
  6. export type PopperArrowProps = ExtractPropTypes<typeof popperArrowProps>;
  7. export type PopperArrowInstance = InstanceType<typeof Arrow> & unknown;
  8. /** @deprecated use `popperArrowProps` instead, and it will be deprecated in the next major version */
  9. export declare const usePopperArrowProps: {
  10. readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
  11. };
  12. /** @deprecated use `PopperArrowProps` instead, and it will be deprecated in the next major version */
  13. export type UsePopperArrowProps = PopperArrowProps;
  14. /** @deprecated use `PopperArrowInstance` instead, and it will be deprecated in the next major version */
  15. export type ElPopperArrowInstance = PopperArrowInstance;