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
32 lines
838 B
TypeScript
32 lines
838 B
TypeScript
import Redis from "./Redis";
|
|
import Cluster from "./cluster";
|
|
import Command from "./Command";
|
|
import Commander from "./utils/Commander";
|
|
declare class Pipeline extends Commander<{
|
|
type: "pipeline";
|
|
}> {
|
|
redis: Redis | Cluster;
|
|
isCluster: boolean;
|
|
isPipeline: boolean;
|
|
leftRedirections: {
|
|
value?: number;
|
|
};
|
|
promise: Promise<unknown>;
|
|
resolve: (result: unknown) => void;
|
|
reject: (error: Error) => void;
|
|
private replyPending;
|
|
private _queue;
|
|
private _result;
|
|
private _transactions;
|
|
private _shaToScript;
|
|
private preferKey;
|
|
constructor(redis: Redis | Cluster);
|
|
fillResult(value: unknown[], position: number): void;
|
|
sendCommand(command: Command): unknown;
|
|
addBatch(commands: any): this;
|
|
}
|
|
export default Pipeline;
|
|
interface Pipeline {
|
|
length: number;
|
|
}
|