UNPKG

ajv

Version:

Another JSON Schema Validator

11 lines (10 loc) 271 B
import type { ErrorObject } from "../../types"; export declare enum DiscrError { Tag = "tag", Mapping = "mapping" } export type DiscrErrorObj<E extends DiscrError> = ErrorObject<"discriminator", { error: E; tag: string; tagValue: unknown; }, string>;