angular-bootstrap-md
Version:
Bootstrap 4 & Angular 15 UI KIT - 700+ components, MIT license, simple installation.
13 lines (12 loc) • 699 B
TypeScript
/**
* @copyright Valor Software
* @copyright Federico Zivolo and contributors
*/
import { Renderer2 } from '@angular/core';
import { Data, Offsets, Options } from './models/index';
export declare class Positioning {
position(hostElement: HTMLElement, targetElement: HTMLElement): Offsets;
offset(hostElement: HTMLElement, targetElement: HTMLElement): Offsets;
positionElements(hostElement: HTMLElement, targetElement: HTMLElement, position: string, _appendToBody?: boolean, options?: any): Data;
}
export declare function positionElements(hostElement: HTMLElement, targetElement: HTMLElement, placement: string, appendToBody?: boolean, options?: Options, renderer?: Renderer2): void;