display-when.d.ts 374B

12345678910111213141516
  1. import { NgZone } from '@angular/core';
  2. import { Platform } from '../../platform/platform';
  3. /**
  4. * @hidden
  5. */
  6. export 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. }