source: trip-planner-front/node_modules/@angular/cdk/overlay/overlay-container.d.ts.map@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.4 KB
Line 
1{"version":3,"file":"overlay-container.d.ts","sources":["overlay-container.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { OnDestroy } from '@angular/core';\nimport { Platform } from '@angular/cdk/platform';\n/** Container inside which all overlays will render. */\nexport declare class OverlayContainer implements OnDestroy {\n protected _platform: Platform;\n protected _containerElement: HTMLElement;\n protected _document: Document;\n constructor(document: any, _platform: Platform);\n ngOnDestroy(): void;\n /**\n * This method returns the overlay container element. It will lazily\n * create the element the first time it is called to facilitate using\n * the container in non-browser environments.\n * @returns the container element\n */\n getContainerElement(): HTMLElement;\n /**\n * Create the overlay container element, which is simply a div\n * with the 'cdk-overlay-container' class on the document body.\n */\n protected _createContainer(): void;\n}\n"]}
Note: See TracBrowser for help on using the repository browser.