Ajout des modules
All checks were successful
Déploiement DEV / deploy (push) Successful in 9s

This commit is contained in:
Christian CUNAT-BRULE
2026-08-06 20:51:00 +02:00
parent 4739a83d2c
commit 5db1c28fd8
2477 changed files with 74218 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
import type { OptionsGeneric, Modifier, Instance, VirtualElement } from "./types";
import detectOverflow from "./utils/detectOverflow";
declare type PopperGeneratorArgs = {
defaultModifiers?: Array<Modifier<any, any>>;
defaultOptions?: Partial<OptionsGeneric<any>>;
};
export declare function popperGenerator(generatorOptions?: PopperGeneratorArgs): <TModifier extends Partial<Modifier<any, any>>>(reference: Element | VirtualElement, popper: HTMLElement, options?: Partial<OptionsGeneric<TModifier>>) => Instance;
export declare const createPopper: <TModifier extends Partial<Modifier<any, any>>>(reference: Element | VirtualElement, popper: HTMLElement, options?: Partial<OptionsGeneric<TModifier>>) => Instance;
export { detectOverflow };