| 1 | import { Readable, ReadableOptions } from "stream"; |
| 2 | |
| 3 | interface Options extends ReadableOptions { |
| 4 | key?: string; |
| 5 | match?: string; |
| 6 | type?: string; |
| 7 | command: string; |
| 8 | redis: any; |
| 9 | count?: string | number; |
| 10 | noValues?: boolean; |
| 11 | } |
| 12 | |
| 13 | /** |
| 14 | * Convenient class to convert the process of scanning keys to a readable stream. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…