Skip to content

Commit

Permalink
fix: accept type of amqplib.credentials.external()
Browse files Browse the repository at this point in the history
  • Loading branch information
tstapleton committed Jan 20, 2022
1 parent 2bd1ec4 commit 1db3b2d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/AmqpConnectionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ export type AmpqConnectionOptions = (ConnectionOptions | TcpSocketConnectOpts) &
password: string;
response: () => Buffer;
}
| {
mechanism: string;
response: () => Buffer;
}
| undefined;
};

Expand Down

0 comments on commit 1db3b2d

Please sign in to comment.