angular-admin-lte
Version:
18 lines (17 loc) • 626 B
TypeScript
import { OnInit, ElementRef } from '@angular/core';
import type { TemplateRef } from '@angular/core';
import { FooterService } from './footer.service';
export declare class FooterLeftComponent {
templateRef: TemplateRef<ElementRef>;
}
export declare class FooterRightComponent {
templateRef: TemplateRef<ElementRef>;
}
export declare class FooterComponent implements OnInit {
private elementRef;
private footerService;
footerLeftComponent?: FooterLeftComponent;
footerRightComponent?: FooterRightComponent;
constructor(elementRef: ElementRef, footerService: FooterService);
ngOnInit(): void;
}