UNPKG

@vendure/ngx-translate-extract

Version:
11 lines (10 loc) 461 B
import { CompilerInterface, CompilerOptions } from './compiler.interface.js'; import { TranslationCollection } from '../utils/translation.collection.js'; export declare class NamespacedJsonCompiler implements CompilerInterface { indentation: string; trailingNewline: boolean; extension: string; constructor(options?: CompilerOptions); compile(collection: TranslationCollection): string; parse(contents: string): TranslationCollection; }