@vendure/ngx-translate-extract
Version:
Extract strings from projects using ngx-translate
13 lines (12 loc) • 518 B
TypeScript
import { TranslationCollection } from '../utils/translation.collection.js';
import { PostProcessorInterface } from './post-processor.interface.js';
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 {};