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