UNPKG

@nestjs/websockets

Version:

Nest - modern, fast, powerful node.js web framework (@websockets)

12 lines (11 loc) 584 B
import { WsExceptionsHandler } from '../exceptions/ws-exceptions-handler.js'; import { BaseExceptionFilterContext } from '@nestjs/core/internal'; import type { NestContainer } from '@nestjs/core'; /** * @publicApi */ export declare class ExceptionFiltersContext extends BaseExceptionFilterContext { constructor(container: NestContainer); create(instance: object, callback: <TClient>(client: TClient, data: any) => any, moduleKey: string, contextId?: import("@nestjs/core").ContextId, inquirerId?: string): WsExceptionsHandler; getGlobalMetadata<T extends any[]>(): T; }