dld_backend/node_modules/@redis/client/dist/lib/commands/COMMAND.d.ts
2025-10-30 12:13:02 +05:30

6 lines
318 B
TypeScript

import { RedisCommandArguments } from '.';
import { CommandRawReply, CommandReply } from './generic-transformers';
export declare const IS_READ_ONLY = true;
export declare function transformArguments(): RedisCommandArguments;
export declare function transformReply(reply: Array<CommandRawReply>): Array<CommandReply>;