lakmus
Version:
Fluent validation.
14 lines (13 loc) • 331 B
TypeScript
/**
* Validation context.
*/
export declare class ValidationContext {
/** The object to validate. */
instance: any;
/** Property name. */
propertyName: string;
/** Property name to display in error message. */
propertyDisplayName: string;
/** Property value. */
propertyValue: any;
}