Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
16 lines
443 B
Plaintext
16 lines
443 B
Plaintext
export interface RedisPluginClientTypes {
|
|
connection_options?: {
|
|
port?: string;
|
|
host?: string;
|
|
};
|
|
address?: string;
|
|
}
|
|
export interface RedisCommand {
|
|
command: string;
|
|
args: string[];
|
|
buffer_args: boolean;
|
|
callback: (err: Error | null, reply: unknown) => void;
|
|
call_on_write: boolean;
|
|
}
|
|
export type Callback<T> = (err: Error | null, reply: T) => void;
|
|
//# sourceMappingURL=internal-types.d.ts.map |