UNPKG

ngx-admin-lte

Version:

AdminLTE theme for angular

33 lines (32 loc) 1.25 kB
import { OnInit, OnDestroy } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { UserService } from '../../services/user.service'; import { MenuService } from '../../services/menu.service'; import { ToasterService, ToasterConfig } from 'angular2-toaster/angular2-toaster'; import { TranslateService } from '../../services/translate.service'; export declare class LayoutAuthComponent implements OnInit, OnDestroy { private userServ; private menuServ; private toastr; private translate; toastrConfig: ToasterConfig; mylinks: Array<any>; skin: string; display_control: boolean; display_user: boolean; display_tasks: boolean; display_messages: boolean; display_notifications: boolean; display_menu_user: boolean; display_menu_search: boolean; display_logout: boolean; header_components: any[]; boxed_style: boolean; display_control_sidebar: boolean; private logger; constructor(userServ: UserService, menuServ: MenuService, toastr: ToasterService, translate: TranslateService, route: ActivatedRoute); private paramExistOrDefault(param, index, default_value?); ngOnInit(): void; ngOnDestroy(): void; protected detectIE(): boolean; }