You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
19 lines
399 B
TypeScript
19 lines
399 B
TypeScript
import { RedisCommandArgument, RedisCommandArguments } from '.';
|
|
|
|
export const IS_READ_ONLY = true;
|
|
|
|
export function transformArguments(
|
|
username: RedisCommandArgument,
|
|
command: Array<RedisCommandArgument>
|
|
): RedisCommandArguments {
|
|
return [
|
|
'ACL',
|
|
'DRYRUN',
|
|
username,
|
|
...command
|
|
];
|
|
}
|
|
|
|
export declare function transformReply(): RedisCommandArgument;
|
|
|