UNPKG

255 BTypeScriptView Raw
1/**
2 * Thrown when consumer tries to recreate connection with the same name, but previous connection was not closed yet.
3 */
4export declare class AlreadyHasActiveConnectionError extends Error {
5 name: string;
6 constructor(connectionName: string);
7}