Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo-mod-jslibs-dist.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'popperjs/package/lib/utils/detectOverflow.d.ts')
-rw-r--r--popperjs/package/lib/utils/detectOverflow.d.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/popperjs/package/lib/utils/detectOverflow.d.ts b/popperjs/package/lib/utils/detectOverflow.d.ts
new file mode 100644
index 0000000..77f2cd4
--- /dev/null
+++ b/popperjs/package/lib/utils/detectOverflow.d.ts
@@ -0,0 +1,11 @@
+import type { State, SideObject, Padding } from "../types";
+import type { Placement, Boundary, RootBoundary, Context } from "../enums";
+export declare type Options = {
+ placement: Placement;
+ boundary: Boundary;
+ rootBoundary: RootBoundary;
+ elementContext: Context;
+ altBoundary: boolean;
+ padding: Padding;
+};
+export default function detectOverflow(state: State, options?: Partial<Options>): SideObject;