UNPKG

glitchkit

Version:

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

9 lines (8 loc) 308 B
import IGlitchKitBaseErrorJson from './GlitchKitBaseError.interface'; interface IGlitchKitBaseHttpErrorJson extends IGlitchKitBaseErrorJson { statusCode: number; url: string | undefined; request: object | undefined; response: object | undefined; } export default IGlitchKitBaseHttpErrorJson;