UNPKG

374 BTypeScriptView Raw
1import { NgZone } from '@angular/core';
2import { Platform } from '../../platform/platform';
3/**
4 * @hidden
5 */
6export declare class DisplayWhen {
7 _plt: Platform;
8 zone: NgZone;
9 isMatch: boolean;
10 conditions: string[];
11 resizeObs: any;
12 constructor(conditions: string, _plt: Platform, zone: NgZone);
13 orientation(): boolean;
14 ngOnDestroy(): void;
15}