Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
23
Frontend-Learner/node_modules/ioredis/built/ScanStream.d.ts
generated
vendored
Normal file
23
Frontend-Learner/node_modules/ioredis/built/ScanStream.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
/// <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;
|
||||
noValues?: boolean;
|
||||
}
|
||||
/**
|
||||
* 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 {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue