mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 19:29:30 +08:00
12 lines
251 B
Text
12 lines
251 B
Text
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
|
|
>
|