@fortawesome/angular-fontawesome
Version:
Angular Fontawesome, an Angular library
21 lines (20 loc) • 1.01 kB
TypeScript
import { OnChanges, SimpleChanges } from '@angular/core';
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
import { CounterParams, Styles } from '@fortawesome/fontawesome-svg-core';
import { FaLayersComponent } from './layers.component';
import * as i0 from "@angular/core";
export declare class FaLayersCounterComponent implements OnChanges {
private parent;
private sanitizer;
content: string;
title?: string;
styles?: Styles;
classes?: string[];
renderedHTML: SafeHtml;
constructor(parent: FaLayersComponent, sanitizer: DomSanitizer);
ngOnChanges(changes: SimpleChanges): void;
protected buildParams(): CounterParams;
private updateContent;
static ɵfac: i0.ɵɵFactoryDeclaration<FaLayersCounterComponent, [{ optional: true; }, null]>;
static ɵcmp: i0.ɵɵComponentDeclaration<FaLayersCounterComponent, "fa-layers-counter", never, { "content": "content"; "title": "title"; "styles": "styles"; "classes": "classes"; }, {}, never, never>;
}