1
2
3
4
5
6
7
8
9
10
11
12
| import type { State, Padding } from "../types";
| import type { Placement, ComputedPlacement, Boundary, RootBoundary } from "../enums";
| declare type Options = {
| placement: Placement;
| padding: Padding;
| boundary: Boundary;
| rootBoundary: RootBoundary;
| flipVariations: boolean;
| allowedAutoPlacements?: Array<Placement>;
| };
| export default function computeAutoPlacement(state: Partial<State>, options?: Options): Array<ComputedPlacement>;
| export {};
|
|