UNPKG

@vendure/ngx-translate-extract

Version:
13 lines (12 loc) 425 B
import { TranslationCollection } from '../utils/translation.collection.js'; import { PostProcessorInterface } from './post-processor.interface.js'; interface Options { prefix: string; } export declare class StripPrefixPostProcessor implements PostProcessorInterface { private options; name: string; constructor(options: Options); process(draft: TranslationCollection): TranslationCollection; } export {};