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