@nestjs-mod/webhook
Version:
Webhook module with an error filter, guard, controller, database migrations and rest-sdk for work with module from other nodejs appliaction
8 lines (7 loc) • 309 B
TypeScript
import { ArgumentsHost } from '@nestjs/common';
import { BaseExceptionFilter } from '@nestjs/core';
import { WebhookError } from './webhook.errors';
export declare class WebhookExceptionsFilter extends BaseExceptionFilter {
private logger;
catch(exception: WebhookError, host: ArgumentsHost): void;
}