source: imaps-frontend/node_modules/@popperjs/core/lib/utils/computeAutoPlacement.d.ts

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 466 bytes
Line 
1import type { State, Padding } from "../types";
2import type { Placement, ComputedPlacement, Boundary, RootBoundary } from "../enums";
3declare type Options = {
4 placement: Placement;
5 padding: Padding;
6 boundary: Boundary;
7 rootBoundary: RootBoundary;
8 flipVariations: boolean;
9 allowedAutoPlacements?: Array<Placement>;
10};
11export default function computeAutoPlacement(state: Partial<State>, options?: Options): Array<ComputedPlacement>;
12export {};
Note: See TracBrowser for help on using the repository browser.