nestjs-telegraf/lib/interfaces/telegraf-exception-filter.interface.ts

6 lines
152 B
TypeScript
Raw Normal View History

2021-01-03 01:30:57 +03:00
import { ArgumentsHost } from '@nestjs/common';
export interface TelegrafExceptionFilter<T = any> {
catch(exception: T, host: ArgumentsHost): any;
}