/** * Extra validation arguments that can be passed from caller of validate() to message builders. * * This type can be augumented using type merging to pass arguments in typesafe way, e.g. * ```typescript * declare module 'class-validator' { * interface ExtraValidationArguments { * t: TFunction; * } * } * ``` */ export interface ExtraValidationArguments { }