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
23 lines (22 loc) • 642 B
TypeScript
import { ElementRef, OnInit, TemplateRef } from '@angular/core';
import { FooterService } from './footer.service';
/**
* Footer Left
*/
export declare class FooterLeftComponent {
templateRef: TemplateRef<any>;
}
/**
* Footer Right
*/
export declare class FooterRightComponent {
templateRef: TemplateRef<any>;
}
export declare class FooterComponent implements OnInit {
private elementRef;
private footerService;
footerLeftComponent: FooterLeftComponent;
footerRightComponent: FooterRightComponent;
constructor(elementRef: ElementRef, footerService: FooterService);
ngOnInit(): void;
}