1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-10 11:43:01 +03:00
Files
node-redis/packages/client/lib/commands/GETSET.ts

8 lines
210 B
TypeScript

export const FIRST_KEY_INDEX = 1;
export function transformArguments(key: string, value: string): Array<string> {
return ['GETSET', key, value];
}
export declare function transformReply(): string | null;