123
This commit is contained in:
14
node_modules/@redis/client/dist/lib/commands/SCAN.d.ts
generated
vendored
Normal file
14
node_modules/@redis/client/dist/lib/commands/SCAN.d.ts
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
import { RedisCommandArgument, RedisCommandArguments } from '.';
|
||||
import { ScanOptions } from './generic-transformers';
|
||||
export declare const IS_READ_ONLY = true;
|
||||
export interface ScanCommandOptions extends ScanOptions {
|
||||
TYPE?: RedisCommandArgument;
|
||||
}
|
||||
export declare function transformArguments(cursor: number, options?: ScanCommandOptions): RedisCommandArguments;
|
||||
type ScanRawReply = [string, Array<string>];
|
||||
export interface ScanReply {
|
||||
cursor: number;
|
||||
keys: Array<RedisCommandArgument>;
|
||||
}
|
||||
export declare function transformReply([cursor, keys]: ScanRawReply): ScanReply;
|
||||
export {};
|
||||
Reference in New Issue
Block a user