Files
ngx-translate-extract/src/post-processors/post-processor.interface.ts
2019-09-18 14:16:47 +02:00

8 lines
264 B
TypeScript

import { TranslationCollection } from '../utils/translation.collection';
export interface PostProcessorInterface {
name: string;
process(draft: TranslationCollection, extracted: TranslationCollection, existing: TranslationCollection): TranslationCollection;
}