13 lines
251 B
Plaintext
13 lines
251 B
Plaintext
import type {ErrorObject} from "../../types"
|
|
|
|
export enum DiscrError {
|
|
Tag = "tag",
|
|
Mapping = "mapping",
|
|
}
|
|
|
|
export type DiscrErrorObj<E extends DiscrError> = ErrorObject<
|
|
"discriminator",
|
|
{error: E; tag: string; tagValue: unknown},
|
|
string
|
|
>
|