import { OpenApi } from "../../OpenApi"; import { IValidation } from "../../structures/IValidation"; export interface IOpenApiValidatorContext { components: OpenApi.IComponents; schema: Schema; value: unknown; path: string; report: ( error: IValidation.IError & { exceptionable: boolean; }, ) => false; exceptionable: boolean; expected: string; equals: boolean; required: boolean; }