UNPKG

angular-translation-checker

Version:

A comprehensive tool for analyzing translation keys in Angular projects using ngx-translate

15 lines 705 B
import { FormatterPlugin, PluginContext, AnalysisResult, OutputSection } from '../../types'; export declare class HtmlFormatter implements FormatterPlugin { readonly name = "html-formatter"; readonly version = "1.0.0"; readonly description = "Formats analysis results as interactive HTML report"; readonly outputFormat: "html"; private logger; initialize(context: PluginContext): Promise<void>; format(result: AnalysisResult, sections: OutputSection[]): Promise<string>; private generateMissingKeysSection; private generateUnusedKeysSection; private generateDynamicPatternsSection; private generateUsedKeysSection; } //# sourceMappingURL=html-formatter.d.ts.map