@material-git/all
Version:
Angular 2 Material
14 lines (12 loc) • 351 B
JavaScript
/**
* OverlayState is a bag of values for either the initial configuration or current state of an
* overlay.
*/
export var OverlayState = (function () {
function OverlayState() {
/** Whether the overlay has a backdrop. */
this.hasBackdrop = false;
}
return OverlayState;
}());
//# sourceMappingURL=overlay-state.js.map