/** * @name orientation-info.directive * @description Device orientation directive in ngx-responsive * * @license MIT */ import { EventEmitter, ViewContainerRef, OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core'; import { ResponsiveState } from '../../@core/providers/responsive-state/responsive-state'; import { OrientationInfo } from './orientation-info'; import { PlatformService } from '../../@core/providers/platform-service/platform.service'; export declare class OrientationInfoDirective extends OrientationInfo implements OnInit, OnDestroy { protected _responsiveState: ResponsiveState; protected viewContainer: ViewContainerRef; protected cd: ChangeDetectorRef; orientation: EventEmitter; constructor(_responsiveState: ResponsiveState, viewContainer: ViewContainerRef, cd: ChangeDetectorRef, platformService: PlatformService); ngOnInit(): void; ngOnDestroy(): void; protected _updateData(value: any): void; }