You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
435 B

2 months ago
  1. import type { Modifier, Padding, Rect } from "../types";
  2. import type { Placement } from "../enums";
  3. export declare type Options = {
  4. element: HTMLElement | string | null;
  5. padding: Padding | ((arg0: {
  6. popper: Rect;
  7. reference: Rect;
  8. placement: Placement;
  9. }) => Padding);
  10. };
  11. export declare type ArrowModifier = Modifier<"arrow", Options>;
  12. declare const _default: ArrowModifier;
  13. export default _default;