Files
micro-service-api/node_modules/@redis/client/dist/lib/commands/SCRIPT_DEBUG.d.ts
2025-11-11 12:36:06 +07:00

17 lines
639 B
TypeScript

import { CommandParser } from '../client/parser';
import { SimpleStringReply } from '../RESP/types';
declare const _default: {
readonly NOT_KEYED_COMMAND: true;
readonly IS_READ_ONLY: true;
/**
* Constructs the SCRIPT DEBUG command
*
* @param parser - The command parser
* @param mode - Debug mode: YES, SYNC, or NO
* @see https://redis.io/commands/script-debug/
*/
readonly parseCommand: (this: void, parser: CommandParser, mode: 'YES' | 'SYNC' | 'NO') => void;
readonly transformReply: () => SimpleStringReply<'OK'>;
};
export default _default;
//# sourceMappingURL=SCRIPT_DEBUG.d.ts.map