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`