UNPKG

ng2-responsive

Version:

Superset of RESPONSIVE DIRECTIVES to show or hide items according to the size of the device screen and another features in Angular 2

13 lines (12 loc) 474 B
import { EventEmitter, OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core'; import { ResponsiveState } from '../config/index'; export declare class UserAgentInfo implements OnInit, OnDestroy { private _responsiveState; private cd; private _subscription_UserAgent; info: EventEmitter<any>; constructor(_responsiveState: ResponsiveState, cd: ChangeDetectorRef); ngOnInit(): void; ngOnDestroy(): void; emitUserAgent(value: any): void; }