UNPKG

1.17 kBTypeScriptView Raw
1import { OnChanges, SimpleChanges } from '@angular/core';
2import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
3import { CounterParams } from '@fortawesome/fontawesome-svg-core';
4import { FaLayersComponent } from './layers.component';
5import * as i0 from "@angular/core";
6export declare class FaLayersCounterComponent implements OnChanges {
7 private parent;
8 private sanitizer;
9 content: string;
10 title?: string;
11 position?: 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
12 renderedHTML: SafeHtml;
13 private document;
14 private config;
15 constructor(parent: FaLayersComponent, sanitizer: DomSanitizer);
16 ngOnChanges(changes: SimpleChanges): void;
17 protected buildParams(): CounterParams;
18 private updateContent;
19 static ɵfac: i0.ɵɵFactoryDeclaration<FaLayersCounterComponent, [{ optional: true; }, null]>;
20 static ɵcmp: i0.ɵɵComponentDeclaration<FaLayersCounterComponent, "fa-layers-counter", never, { "content": { "alias": "content"; "required": false; }; "title": { "alias": "title"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, never, true, never>;
21}