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