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