6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
24 lines
569 B
TypeScript
24 lines
569 B
TypeScript
/// <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 {};
|