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