-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

View File

@@ -0,0 +1,17 @@
import { BlobStringReply } from '../RESP/types';
declare const _default: {
readonly IS_READ_ONLY: true;
/**
* Constructs the HSCAN command with NOVALUES option
*
* @param args - The same parameters as HSCAN command
* @see https://redis.io/commands/hscan/
*/
readonly parseCommand: (this: void, parser: import("../..").CommandParser, key: import("../RESP/types").RedisArgument, cursor: import("../RESP/types").RedisArgument, options?: import("./SCAN").ScanCommonOptions | undefined) => void;
readonly transformReply: (this: void, [cursor, fields]: [BlobStringReply, Array<BlobStringReply>]) => {
cursor: BlobStringReply<string>;
fields: BlobStringReply<string>[];
};
};
export default _default;
//# sourceMappingURL=HSCAN_NOVALUES.d.ts.map