123
This commit is contained in:
10
node_modules/@redis/client/dist/lib/commands/HSCAN_NOVALUES.d.ts
generated
vendored
Normal file
10
node_modules/@redis/client/dist/lib/commands/HSCAN_NOVALUES.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { RedisCommandArgument, RedisCommandArguments } from '.';
|
||||
import { ScanOptions } from './generic-transformers';
|
||||
import { HScanRawReply } from './HSCAN';
|
||||
export { FIRST_KEY_INDEX, IS_READ_ONLY } from './HSCAN';
|
||||
export declare function transformArguments(key: RedisCommandArgument, cursor: number, options?: ScanOptions): RedisCommandArguments;
|
||||
interface HScanNoValuesReply {
|
||||
cursor: number;
|
||||
keys: Array<RedisCommandArgument>;
|
||||
}
|
||||
export declare function transformReply([cursor, rawData]: HScanRawReply): HScanNoValuesReply;
|
||||
Reference in New Issue
Block a user