@biesbjerg/ngx-translate-extract
Version:
Extract strings from projects using ngx-translate
7 lines (6 loc) • 384 B
TypeScript
import { TranslationCollection } from '../utils/translation.collection';
import { PostProcessorInterface } from './post-processor.interface';
export declare class NullAsDefaultValuePostProcessor implements PostProcessorInterface {
name: string;
process(draft: TranslationCollection, extracted: TranslationCollection, existing: TranslationCollection): TranslationCollection;
}