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

32 lines (31 loc) 1.09 kB
import { AfterViewInit, ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core'; import { LayoutStore } from '../layout.store'; import { WrapperService } from '../wrapper/wrapper.service'; import { SidebarRightService } from './sidebar-right.service'; export declare class SidebarRightComponent implements OnInit, AfterViewInit, OnDestroy { private elementRef; private renderer2; private layoutStore; private sidebarRightService; private wrapperService; layout: string; private skin; private isSidebarRightOverContent; private isSidebarRightCollapsed; private listeners; private subscriptions; sidebarContentElement: ElementRef; constructor(elementRef: ElementRef, renderer2: Renderer2, layoutStore: LayoutStore, sidebarRightService: SidebarRightService, wrapperService: WrapperService); /** * @method ngOnInit */ ngOnInit(): void; /** * @method ngAfterViewInit */ ngAfterViewInit(): void; /** * @method ngOnDestroy */ ngOnDestroy(): void; }