/
home
/
techb158
/
balavpn.abdallabala.com
/
node_modules
/
@ioredis
/
commands
/
built
/
/home/techb158/balavpn.abdallabala.com/node_modules/@ioredis/commands/built
mkdir
upload
Name
Size
Mode
Actions
commands.json
53489
0666
edit
dl
rm
index.d.ts
895
0666
edit
dl
rm
index.js
7442
0666
edit
dl
rm
Edit:
/home/techb158/balavpn.abdallabala.com/node_modules/@ioredis/commands/built/index.d.ts
(895B)
/// <reference types="node" /> /** * Redis command list * * All commands are lowercased. */ export declare const list: string[]; /** * Check if the command exists */ export declare function exists(commandName: string, options?: { caseInsensitive?: boolean; }): boolean; /** * Check if the command has the flag * * Some of possible flags: readonly, noscript, loading */ export declare function hasFlag(commandName: string, flag: string, options?: { nameCaseInsensitive?: boolean; }): boolean; /** * Get indexes of keys in the command arguments * * @example * ```javascript * getKeyIndexes('set', ['key', 'value']) // [0] * getKeyIndexes('mget', ['key1', 'key2']) // [0, 1] * ``` */ export declare function getKeyIndexes(commandName: string, args: (string | Buffer | number)[], options?: { parseExternalKey?: boolean; nameCaseInsensitive?: boolean; }): number[];
Save
cmd:
run