You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-10 11:43:01 +03:00
6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
export function transformArguments(key: string): Array<string> {
|
|
return ['DUMP', key];
|
|
}
|
|
|
|
export declare function transformReply(): string;
|