1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-17 19:41:06 +03:00

replace empty "transformReply" functions with typescript "declare"

This commit is contained in:
leibale
2021-09-29 17:58:16 -04:00
parent 9a1beedda7
commit c19d200b91
174 changed files with 472 additions and 1051 deletions

View File

@@ -1,5 +1,5 @@
import { TransformArgumentsReply } from '.';
import { BitValue, transformReplyBit } from './generic-transformers';
import { BitValue } from './generic-transformers';
export const FIRST_KEY_INDEX = 1;
@@ -7,4 +7,4 @@ export function transformArguments(key: string, offset: number, value: BitValue)
return ['SETBIT', key, offset.toString(), value.toString()];
}
export const transformReply = transformReplyBit;
export declare function transformReply(): BitValue;