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

19 lines
819 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';
export interface ZInterCardOptions {
LIMIT?: number;
}
declare const _default: {
readonly IS_READ_ONLY: true;
/**
* Returns the cardinality of the intersection of multiple sorted sets.
* @param parser - The Redis command parser.
* @param keys - Keys of the sorted sets to intersect.
* @param options - Limit option or options object with limit.
*/
readonly parseCommand: (this: void, parser: CommandParser, keys: RedisVariadicArgument, options?: ZInterCardOptions['LIMIT'] | ZInterCardOptions) => void;
readonly transformReply: () => NumberReply;
};
export default _default;
//# sourceMappingURL=ZINTERCARD.d.ts.map