UNPKG

glitchkit

Version:

A lightweight toolkit to create and manage expressive, structured, and reusable error types. Perfect for APIs, services, and glitchy adventures

7 lines (6 loc) 273 B
import IGlitchKitBaseErrorJson from './GlitchKitBaseError.interface'; interface IGlitchKitBaseValidationErrorJson<T> extends IGlitchKitBaseErrorJson { attribute: string | undefined; attributeValue: T | undefined; } export default IGlitchKitBaseValidationErrorJson;