import { RequestRejectionDetails } from './RequestRejectionDetails'; /** * Passed context for the validation * at which rejections can be expressed. * * @public */ export interface RequestValidationContext { /** * Rejects the validated request * * @param details - Optional details about the rejection which will be provided to the sender. */ reject(details?: Partial): void; }