Skip to content

Commit

Permalink
Fix wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaeverywhere committed Aug 21, 2023
1 parent 92b2cbc commit c0c922b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-message-bus",
"version": "3.3.0",
"version": "3.3.1",
"description": "Minimalistic and complete AMQP message bus implementation",
"main": "lib/index.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/Types/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface ExchangeConfig {
export interface QueueConfig {
name: string;
options?: Omit<Options.AssertQueue, 'deadLetterRoutingKey'> & {
deadLetterRoutingKey: string;
deadLetterRoutingKey?: string;
};
}

Expand Down

0 comments on commit c0c922b

Please sign in to comment.