UNPKG

@vendure/ngx-translate-extract

Version:

Extract strings from projects using ngx-translate

11 lines (10 loc) 461 B
import { TranslationCollection } from '../utils/translation.collection.js'; import { type CompilerInterface, type CompilerOptions } from './compiler.interface.js'; export declare class PoCompiler implements CompilerInterface { extension: string; domain: string; private readonly includeSources; constructor(options?: CompilerOptions); compile(collection: TranslationCollection): string; parse(contents: string): TranslationCollection; }