Files
micro-service-api/node_modules/@redis/client/dist/lib/commands/UNLINK.d.ts

18 lines
724 B
TypeScript
Raw Normal View History

2025-11-11 12:36:06 +07:00
import { CommandParser } from '../client/parser';
import { NumberReply } from '../RESP/types';
import { RedisVariadicArgument } from './generic-transformers';
declare const _default: {
readonly IS_READ_ONLY: false;
/**
* Constructs the UNLINK command to asynchronously delete one or more keys
*
* @param parser - The command parser
* @param keys - One or more keys to unlink
* @returns The number of keys that were unlinked
* @see https://redis.io/commands/unlink/
*/
readonly parseCommand: (this: void, parser: CommandParser, keys: RedisVariadicArgument) => void;
readonly transformReply: () => NumberReply;
};
export default _default;
//# sourceMappingURL=UNLINK.d.ts.map