UNPKG

394 BTypeScriptView Raw
1import { Controller } from '@nestjs/common/interfaces/controllers/controller.interface';
2import { ExceptionsHandler } from '../../exceptions/exceptions-handler';
3import { ContextId } from '../../injector/instance-wrapper';
4export interface ExceptionsFilter {
5 create(instance: Controller, callback: Function, module: string, contextId?: ContextId, inquirerId?: string): ExceptionsHandler;
6}