UNPKG

diagnostic-channel-publishers

Version:

A collection of pre-built module patches that enable existing npm modules to publish diagnostic data

12 lines (11 loc) 293 B
import { IModulePatcher } from "diagnostic-channel"; export interface IRedisData { duration: number; address: string; commandObj: any; err: Error; result: any; time: Date; } export declare const redis: IModulePatcher; export declare function enable(): void;