From 3d7668e543cc15f51d8c3018bbc57abf226cb209 Mon Sep 17 00:00:00 2001 From: Rahul Narasimman Date: Tue, 29 Jul 2025 15:41:09 +0200 Subject: [PATCH] fix: Update command-options.md with proper key 'RESP_TYPES' (#3040) --- docs/command-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/command-options.md b/docs/command-options.md index b246445ad7..a88ac355bb 100644 --- a/docs/command-options.md +++ b/docs/command-options.md @@ -12,7 +12,7 @@ Some [RESP types](./RESP.md) can be mapped to more than one JavaScript type. For await client.get('key'); // `string | null` const proxyClient = client.withTypeMapping({ - [TYPES.BLOB_STRING]: Buffer + [RESP_TYPES.BLOB_STRING]: Buffer }); await proxyClient.get('key'); // `Buffer | null`