source: trip-planner-front/node_modules/@angular/cdk/overlay/overlay-container.d.ts.__ivy_ngcc_bak@ 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.1 KB
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { OnDestroy } from '@angular/core';
9import { Platform } from '@angular/cdk/platform';
10/** Container inside which all overlays will render. */
11export declare class OverlayContainer implements OnDestroy {
12 protected _platform: Platform;
13 protected _containerElement: HTMLElement;
14 protected _document: Document;
15 constructor(document: any, _platform: Platform);
16 ngOnDestroy(): void;
17 /**
18 * This method returns the overlay container element. It will lazily
19 * create the element the first time it is called to facilitate using
20 * the container in non-browser environments.
21 * @returns the container element
22 */
23 getContainerElement(): HTMLElement;
24 /**
25 * Create the overlay container element, which is simply a div
26 * with the 'cdk-overlay-container' class on the document body.
27 */
28 protected _createContainer(): void;
29}
Note: See TracBrowser for help on using the repository browser.