UNPKG

194 BTypeScriptView Raw
1/** Strategy for setting the position on an overlay. */
2export interface PositionStrategy {
3 /** Updates the position of the overlay element. */
4 apply(element: Element): Promise<void>;
5}