UNPKG

ngx-translate-extract

Version:

Extract strings from projects using ngx-translate. Forked from biesbjerg/ngx-translate-extract

9 lines (8 loc) 513 B
import { ParserInterface } from './parser.interface'; import { AbstractTemplateParser } from './abstract-template.parser'; import { TranslationCollection } from '../utils/translation.collection'; export declare class DirectiveParser extends AbstractTemplateParser implements ParserInterface { extract(contents: string, path?: string): TranslationCollection; protected _parseTemplate(template: string): TranslationCollection; protected _normalizeTemplateAttributes(template: string): string; }