16fcfcac7f935fc9cf12e497e9a8b124730f5481ff95a69bafeecf52773e6cc17fcc490a48cfb6af0f617dfed72a2c54a726caa0e71fd0af0ef7c0f79a202a 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;