14 lines
521 B
TypeScript
14 lines
521 B
TypeScript
import { CommandParser } from '../client/parser';
|
|
import { NumberReply } from '../RESP/types';
|
|
declare const _default: {
|
|
readonly NOT_KEYED_COMMAND: true;
|
|
readonly IS_READ_ONLY: true;
|
|
/**
|
|
* Returns the total number of commands available in the Redis server
|
|
* @param parser - The Redis command parser
|
|
*/
|
|
readonly parseCommand: (this: void, parser: CommandParser) => void;
|
|
readonly transformReply: () => NumberReply;
|
|
};
|
|
export default _default;
|
|
//# sourceMappingURL=COMMAND_COUNT.d.ts.map
|