⚠️ Internal: This API is not publically exported by the package.

Type alias ZRangeCommandOptions

ZRangeCommandOptions: {
    rev?: boolean;
    withScores?: boolean;
} & ({
    byLex?: never;
    byScore: true;
} | {
    byLex: true;
    byScore?: never;
} | {
    byLex?: never;
    byScore?: never;
}) & ({
    count: number;
    offset: number;
} | {
    count?: never;
    offset?: never;
})

Type declaration

  • Optional rev?: boolean
  • Optional withScores?: boolean