1 | import { WsExceptionsHandler } from '../exceptions/ws-exceptions-handler';
|
2 | export declare class WsProxy {
|
3 | create(targetCallback: (...args: unknown[]) => Promise<any>, exceptionsHandler: WsExceptionsHandler, targetPattern?: string): (...args: unknown[]) => Promise<any>;
|
4 | handleError<T>(exceptionsHandler: WsExceptionsHandler, args: unknown[], error: T): void;
|
5 | }
|