-first commit

This commit is contained in:
2025-11-11 12:36:06 +07:00
commit b99c214434
5683 changed files with 713336 additions and 0 deletions

29
node_modules/@ioredis/commands/built/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,29 @@
/// <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): boolean;
/**
* Check if the command has the flag
*
* Some of possible flags: readonly, noscript, loading
*/
export declare function hasFlag(commandName: string, flag: string): 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;
}): number[];