UNPKG

@material-git/all

Version:
12 lines (11 loc) 398 B
import { PositionStrategy } from './position/position-strategy'; /** * OverlayState is a bag of values for either the initial configuration or current state of an * overlay. */ export declare class OverlayState { /** Strategy with which to position the overlay. */ positionStrategy: PositionStrategy; /** Whether the overlay has a backdrop. */ hasBackdrop: boolean; }