Skip to content

Commit eea5021

Browse files
committed
Minor tweak on BarrierOutputs generic
1 parent dd052aa commit eea5021

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/core/lib/queues/HandlerContainer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,13 @@ export class MessageHandlerConfigBuilder<
111111
MessagePayloadSchemas extends object,
112112
ExecutionContext,
113113
PrehandlerOutput = undefined,
114-
BarrierOutputs = undefined,
115114
> {
116115
private readonly configs: MessageHandlerConfig<
117116
MessagePayloadSchemas,
118117
ExecutionContext,
119118
PrehandlerOutput,
120-
BarrierOutputs
119+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
120+
any
121121
>[]
122122

123123
constructor() {

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@message-queue-toolkit/core",
3-
"version": "9.0.3",
3+
"version": "9.0.4",
44
"private": false,
55
"license": "MIT",
66
"description": "Useful utilities, interfaces and base classes for message queue handling. Supports AMQP and SQS with a common abstraction on top currently",

0 commit comments

Comments
 (0)