UNPKG

486 BTypeScriptView Raw
1import { IModulePatcher } from "diagnostic-channel";
2export interface IMysqlData {
3 query: {
4 sql?: string;
5 _connection?: {
6 config?: {
7 socketPath?: string;
8 host?: string;
9 port?: number;
10 };
11 };
12 };
13 callbackArgs: IArguments;
14 err: Error;
15 duration: number;
16 time: Date;
17}
18export declare const mysql: IModulePatcher;
19export declare function enable(): void;