From 5cf5940442fc15802e075cd783363ebb9c4f65cf Mon Sep 17 00:00:00 2001 From: "gianluca.casagrande" Date: Thu, 5 Dec 2024 13:52:03 +0100 Subject: [PATCH] typo --- types/index.test-d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.test-d.ts b/types/index.test-d.ts index be61126..f2be195 100644 --- a/types/index.test-d.ts +++ b/types/index.test-d.ts @@ -42,7 +42,7 @@ expectType(mqEmitterRedis().on('topic', listener)); expectType(mqEmitterRedis().removeListener('topic', listener)); -expectError(mqEmitterRedis().emit(null)) +expectError(mqEmitterRedis().emit(null)); expectType(mqEmitterRedis().emit({ topic: 'test', prop1: 'prop1' }));