@biesbjerg/ngx-translate-extract
Version:
Extract strings from projects using ngx-translate
10 lines (9 loc) • 379 B
TypeScript
import { CompilerInterface } from './compiler.interface';
import { TranslationCollection } from '../utils/translation.collection';
export declare class PoCompiler implements CompilerInterface {
extension: string;
domain: string;
constructor(options?: any);
compile(collection: TranslationCollection): string;
parse(contents: string): TranslationCollection;
}