1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00

fix merge

This commit is contained in:
leibale
2021-11-24 21:37:31 -05:00
parent 96a73db0b4
commit c74e043ee1
5 changed files with 189 additions and 118 deletions

View File

@@ -1,9 +1,8 @@
export const FIRST_KEY_INDEX = 1;
export const IS_READ_ONLY = true;
export function transformArguments(key: string, element: string): Array<string> {
return ['LINDEX', key, element];
export function transformArguments(key: string, index: number): Array<string> {
return ['LINDEX', key, index.toString()];
}
export declare function transformReply(): string | null;
export declare function transformReply(): string | null;