UNPKG

314 BTypeScriptView Raw
1import { PositionStrategy } from './position/position-strategy';
2/**
3 * OverlayState is a bag of values for either the initial configuration or current state of an
4 * overlay.
5 */
6export declare class OverlayState {
7 /** Strategy with which to position the overlay. */
8 positionStrategy: PositionStrategy;
9}