UNPKG

angular-translation-checker

Version:

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

13 lines 597 B
import { ExtractorPlugin, PluginContext, TranslationKey } from '../../types'; export declare class HtmlExtractor implements ExtractorPlugin { readonly name = "html-extractor"; readonly version = "1.0.0"; readonly description = "Extracts translation keys from HTML template files"; readonly supportedExtensions: string[]; private logger; initialize(context: PluginContext): Promise<void>; extractKeys(filePath: string, content: string): Promise<TranslationKey[]>; private createTranslationKey; private isDynamicKey; } //# sourceMappingURL=html-extractor.d.ts.map