19 lines
819 B
TypeScript
19 lines
819 B
TypeScript
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
|