Interface PostProcessorModule
interface PostProcessorModule { name: string; type: "postProcessor"; process(value,
key,
options,
translator): string; } Properties
name
name: string
type
type: "postProcessor"
Methods
process
- process(value, key, options, translator): string
Parameters
- value: string
- key: string | string[]
- options: TOptions
- translator: any
Returns string
Used to extend or manipulate the translated values before returning them in
tfunction. Need to be a singleton object.