You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got this error after trying to build my project with Redis as a dependency:
$ tsc
node_modules/@redis/client/dist/lib/commands/generic-transformers.d.ts:196:67 - error TS5084: Tuple members must all have names or all not have names.
196 type StreamMessagesRawReply = TuplesReply<[name: BlobStringReply, ArrayReply<StreamMessageRawReply>]>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Found 1 error in node_modules/@redis/client/dist/lib/commands/generic-transformers.d.ts:196
error Command failed with exit code 2.
From looking at the source code, it looks like the ArrayReply part of the tuple should have a name of messages?