UNPKG

@sentzunhat/zacatl

Version:

A modular, high-performance TypeScript microservice framework for Node.js, featuring layered architecture, dependency injection, and robust validation for building scalable APIs and distributed systems.

7 lines 314 B
import { CustomError, type CustomErrorsArgs } from './custom'; export interface UnauthorizedErrorArgs extends CustomErrorsArgs { } export declare class UnauthorizedError extends CustomError { constructor({ message, reason, metadata, error }: UnauthorizedErrorArgs); } //# sourceMappingURL=unauthorized.d.ts.map