Last change
on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 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 | */
|
---|
8 | import { OnDestroy } from '@angular/core';
|
---|
9 | import { Platform } from '@angular/cdk/platform';
|
---|
10 | /** Container inside which all overlays will render. */
|
---|
11 | import * as ɵngcc0 from '@angular/core';
|
---|
12 | export declare class OverlayContainer implements OnDestroy {
|
---|
13 | protected _platform: Platform;
|
---|
14 | protected _containerElement: HTMLElement;
|
---|
15 | protected _document: Document;
|
---|
16 | constructor(document: any, _platform: Platform);
|
---|
17 | ngOnDestroy(): void;
|
---|
18 | /**
|
---|
19 | * This method returns the overlay container element. It will lazily
|
---|
20 | * create the element the first time it is called to facilitate using
|
---|
21 | * the container in non-browser environments.
|
---|
22 | * @returns the container element
|
---|
23 | */
|
---|
24 | getContainerElement(): HTMLElement;
|
---|
25 | /**
|
---|
26 | * Create the overlay container element, which is simply a div
|
---|
27 | * with the 'cdk-overlay-container' class on the document body.
|
---|
28 | */
|
---|
29 | protected _createContainer(): void;
|
---|
30 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<OverlayContainer, never>;
|
---|
31 | }
|
---|
32 |
|
---|
33 | //# sourceMappingURL=overlay-container.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.