@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
10 lines (9 loc) • 339 B
TypeScript
import type { AlignPropType } from '../schema';
type Arguments = {
floatingElement: HTMLElement;
referenceElement: Element;
arrowElement?: HTMLElement;
align?: AlignPropType;
};
export declare const alignFloatingElements: ({ floatingElement, referenceElement, arrowElement, align }: Arguments) => Promise<void>;
export {};