UNPKG

251 BPlain TextView Raw
1import type {ErrorObject} from "../../types"
2
3export enum DiscrError {
4 Tag = "tag",
5 Mapping = "mapping",
6}
7
8export type DiscrErrorObj<E extends DiscrError> = ErrorObject<
9 "discriminator",
10 {error: E; tag: string; tagValue: unknown},
11 string
12>