UNPKG

ad-custom-lib

Version:

This is an UI custom library based on Adminlte library with purpose for personal use, if you need a full template of Primeng please visit https://github.com/mledour/angular-admin-lte

25 lines (24 loc) 782 B
import { ElementRef, NgZone, OnDestroy, OnInit, Renderer2 } from '@angular/core'; import { LayoutStore } from '../layout.store'; import { WrapperService } from './wrapper.service'; export declare class WrapperComponent implements OnInit, OnDestroy { private elementRef; private renderer2; private layoutStore; private wrapperService; private ngZone; private skin; private listeners; private subscriptions; classes: string; constructor(elementRef: ElementRef, renderer2: Renderer2, layoutStore: LayoutStore, wrapperService: WrapperService, ngZone: NgZone); /** * [ngOnInit description] * @method ngOnInit */ ngOnInit(): void; /** * @method ngOnDestroy */ ngOnDestroy(): void; }