@biesbjerg/ngx-translate-extract
Version:
Extract strings from projects using ngx-translate
13 lines (12 loc) • 512 B
TypeScript
import { TranslationCollection } from '../utils/translation.collection';
import { PostProcessorInterface } from './post-processor.interface';
interface Options {
defaultValue: string;
}
export declare class StringAsDefaultValuePostProcessor implements PostProcessorInterface {
protected options: Options;
name: string;
constructor(options: Options);
process(draft: TranslationCollection, extracted: TranslationCollection, existing: TranslationCollection): TranslationCollection;
}
export {};