1 | import { IModulePatcher } from "diagnostic-channel";
|
2 | export interface IRedisData {
|
3 | duration: number;
|
4 | address: string;
|
5 | commandObj: any;
|
6 | err: Error;
|
7 | result: any;
|
8 | time: Date;
|
9 | }
|
10 | export declare const redis: IModulePatcher;
|
11 | export declare function enable(): void;
|