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) 297 B
import GlitchKitBaseError from '../baseGlitchKit/GlitchKitBaseError'; declare class GlitchKitSegmentationFaultError extends GlitchKitBaseError { constructor(message: string, errorCode?: number); static isInstance(error: unknown): boolean; } export default GlitchKitSegmentationFaultError;