diff --git a/types/redis/index.d.ts b/types/redis/index.d.ts index 00029fe2d3..6417afabf9 100644 --- a/types/redis/index.d.ts +++ b/types/redis/index.d.ts @@ -250,8 +250,8 @@ export interface Commands { /** * Pop a value from a list, push it to another list and return it; or block until one is available. */ - brpoplpush(source: string, destination: string, timeout: number, cb?: Callback<[string, string]>): R; - BRPOPLPUSH(source: string, destination: string, timeout: number, cb?: Callback<[string, string]>): R; + brpoplpush(source: string, destination: string, timeout: number, cb?: Callback): R; + BRPOPLPUSH(source: string, destination: string, timeout: number, cb?: Callback): R; /** * ADDSLOTS - Assign new hash slots to receiving node.