UNPKG

typenexus

Version:

TypeNexus is a good tool for API encapsulation and management. It provides a clean and lightweight way to package TypeORM functionality, helping you build applications faster while reducing template code redundancy and type conversion work.

10 lines (9 loc) 276 B
import { Action } from '../Action.js'; import { ForbiddenError } from './ForbiddenError.js'; /** * Thrown when route is guarded by @Authorized decorator. */ export declare class AccessDeniedError extends ForbiddenError { name: string; constructor(action: Action); }