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

support command LATENCY DOCTOR (#2053)

* The Latency Doctor Command has been added to the project

* Update LATENCY_DOCTOR.ts

* Update LATENCY_DOCTOR.spec.ts

* Update LATENCY_DOCTOR.spec.ts

Co-authored-by: QuentinRK <q.rankin@outlook.com>
Co-authored-by: Leibale Eidelman <leibale1998@gmail.com>
This commit is contained in:
Quentin Rankin
2022-03-27 18:29:10 +01:00
committed by GitHub
parent 6b8a40a36b
commit 6ca45f674d
3 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
export function transformArguments(): Array<string> {
return ['LATENCY', 'DOCTOR'];
}
export declare function transformReply(): string;