1 | import { IModulePatcher } from "diagnostic-channel";
|
2 | export 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 | }
|
18 | export declare const mysql: IModulePatcher;
|
19 | export declare function enable(): void;
|