1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-19 07:02: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,8 +1,8 @@
import { TransformArgumentsReply } from '.';
import { pushVerdictArguments, transformReplyNumber } from './generic-transformers';
import { pushVerdictArguments } from './generic-transformers';
export function transformArguments(keys: string | Array<string>): TransformArgumentsReply {
return pushVerdictArguments(['DEL'], keys);
}
export const transformReply = transformReplyNumber;
export declare function transformReply(): number;