method
RedisClient.xrevrange
end: string,
start: string,
...options: string | number[]
): Promise<[string, string[]][]>;
Get a range of entries from a stream in reverse order
@param key
The stream key
@param end
The end ID (use "+" for the maximum ID)
@param start
The start ID (use "-" for the minimum ID)
@param options
Optional COUNT modifier
@returns
Promise that resolves with an array of [id, [field, value, ...]] entries
Referenced types
type KeyLike = string | ArrayBufferView | Blob