UNPKG

actionhero

Version:

actionhero.js is a multi-transport API Server with integrated cluster capabilities and delayed tasks

17 lines (16 loc) 395 B
import { Initializer } from "../index"; export interface ExceptionHandlerAPI { reporters: Array<any>; report: Function; loader?: Function; action?: Function; task?: Function; } /** * Handlers for when things go wrong. */ export declare class Exceptions extends Initializer { constructor(); relevantDetails(): string[]; initialize(config: any): Promise<void>; }