### Description Tiny point for y'all that tripped me up 🙃. On the latest version of the package, when I write ```ts for await (const key of this.client.scanIterator({ MATCH: keyPattern })) { // ... } ``` All available evidence shows that that `key` is `string[]`. This matches the [scan iterator doc](https://github.com/redis/node-redis/blob/master/docs/scan-iterators.md), but not what's [in the main README](https://github.com/redis/node-redis/tree/master?tab=readme-ov-file#scan-iterator): ```ts for await (const key of client.scanIterator()) { // use the key! await client.get(key); } ```