UNPKG

289 BTypeScriptView Raw
1import { PositionStrategy } from './position-strategy';
2import { ElementRef } from '@angular/core';
3export declare class RelativePositionStrategy implements PositionStrategy {
4 private _relativeTo;
5 constructor(_relativeTo: ElementRef);
6 apply(element: Element): Promise<void>;
7}