blob: 6cf5ea51f54f148955efc77e7aa7b5bf63619b36 [file] [log] [blame]
import type { ErrorObject } from "../../types";
export declare enum DiscrError {
Tag = "tag",
Mapping = "mapping"
}
export declare type DiscrErrorObj<E extends DiscrError> = ErrorObject<"discriminator", {
error: E;
tag: string;
tagValue: unknown;
}, string>;