Version: 0.0.10.0.20.0.30.0.40.1.20.2.00.3.00.5.01.0.01.0.11.0.21.0.31.0.41.0.51.0.61.0.71.0.81.0.91.0.101.0.111.0.121.0.131.1.01.1.11.1.21.1.31.1.41.2.01.2.11.2.21.2.31.2.41.2.51.2.61.2.71.3.01.3.11.3.21.3.31.3.41.3.51.3.61.4.01.5.01.5.11.5.21.5.31.5.41.5.51.5.61.5.71.5.81.5.91.5.101.5.111.5.121.6.01.6.11.7.01.7.11.7.21.7.31.7.41.7.51.7.61.8.01.9.01.9.11.10.01.11.01.11.11.12.11.12.21.13.01.13.11.13.21.14.01.15.01.15.12.0.0-alpha12.0.0-alpha22.0.0-alpha32.0.0-rc12.0.0-rc22.0.0-rc32.0.0-rc42.0.02.0.12.1.02.2.02.3.02.3.12.4.02.4.12.4.22.4.32.5.03.0.0-03.0.0-13.0.0-23.0.03.1.03.1.13.1.23.1.33.1.43.2.03.2.13.2.24.0.0-04.0.0-14.0.0-24.0.0-34.0.04.0.14.0.24.1.04.2.04.2.14.2.24.2.34.3.04.3.14.4.04.5.04.5.14.6.04.6.14.6.24.6.34.7.04.8.04.9.04.9.14.9.24.9.34.9.44.9.54.10.04.10.14.10.24.10.34.10.44.11.04.11.14.11.24.12.04.12.14.12.24.13.04.13.14.14.04.14.14.14.24.14.34.14.44.15.04.15.14.16.04.16.14.16.24.16.34.17.04.17.14.17.24.17.34.18.04.19.04.19.14.19.24.19.34.19.44.20.04.21.04.22.04.23.04.23.14.24.04.24.14.24.24.24.34.24.44.24.54.24.64.25.04.26.04.27.04.27.14.27.24.27.34.27.44.27.54.27.64.27.74.27.84.27.94.27.104.27.114.28.04.28.14.28.24.28.34.28.44.28.55.0.0-beta.15.0.0-beta.25.0.0-beta.35.0.0-beta.45.0.05.0.15.0.25.0.35.0.45.0.55.0.65.1.05.2.05.2.15.2.25.2.35.2.45.2.55.2.65.3.05.3.15.3.25.4.05.4.15.4.25.5.0
/// <reference types="node" />
import { Readable, ReadableOptions } from "stream";
interface Options extends ReadableOptions {
key?: string;
match?: string;
type?: string;
command: string;
redis: any;
count?: string | number;
}
/**
* Convenient class to convert the process of scanning keys to a readable stream.
*/
export default class ScanStream extends Readable {
private opt;
private _redisCursor;
private _redisDrained;
constructor(opt: Options);
_read(): void;
close(): void;
export {};