UNPKG

necessary-utils-core

Version:
7 lines (6 loc) 260 B
export default class HandlerDecorator { static ErrorHandling(handler: ErrorHandler): MethodDecorator; } declare type ErrorHandler = (error: any) => void; declare type MethodDecorator = (target: any, name: string, descriptor: any) => void; export {};