arrow.d.ts 1.1 KB

12345678910111213141516
  1. import type { ExtractPropTypes, ExtractPublicPropTypes } 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 PopperArrowPropsPublic = ExtractPublicPropTypes<typeof popperArrowProps>;
  8. export type PopperArrowInstance = InstanceType<typeof Arrow> & unknown;
  9. /** @deprecated use `popperArrowProps` instead, and it will be deprecated in the next major version */
  10. export declare const usePopperArrowProps: {
  11. readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
  12. };
  13. /** @deprecated use `PopperArrowProps` instead, and it will be deprecated in the next major version */
  14. export type UsePopperArrowProps = PopperArrowProps;
  15. /** @deprecated use `PopperArrowInstance` instead, and it will be deprecated in the next major version */
  16. export type ElPopperArrowInstance = PopperArrowInstance;