123
This commit is contained in:
13
node_modules/@redis/client/dist/lib/commands/COMMAND_GETKEYSANDFLAGS.d.ts
generated
vendored
Normal file
13
node_modules/@redis/client/dist/lib/commands/COMMAND_GETKEYSANDFLAGS.d.ts
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
import { RedisCommandArgument, RedisCommandArguments } from '.';
|
||||
export declare const IS_READ_ONLY = true;
|
||||
export declare function transformArguments(args: Array<RedisCommandArgument>): RedisCommandArguments;
|
||||
type KeysAndFlagsRawReply = Array<[
|
||||
RedisCommandArgument,
|
||||
RedisCommandArguments
|
||||
]>;
|
||||
type KeysAndFlagsReply = Array<{
|
||||
key: RedisCommandArgument;
|
||||
flags: RedisCommandArguments;
|
||||
}>;
|
||||
export declare function transformReply(reply: KeysAndFlagsRawReply): KeysAndFlagsReply;
|
||||
export {};
|
||||
Reference in New Issue
Block a user