We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bc28051 + 0abb847 commit 1448ae8Copy full SHA for 1448ae8
typings/mysql/lib/PoolCluster.d.ts
@@ -1,7 +1,7 @@
1
2
-import Connection = require('./Connection');
3
import PoolConnection = require('./PoolConnection');
4
import {EventEmitter} from 'events';
+import {PoolOptions} from './Pool';
5
6
declare namespace PoolCluster {
7
@@ -37,8 +37,8 @@ declare class PoolCluster extends EventEmitter {
37
38
config: PoolCluster.PoolClusterOptions;
39
40
- add(config: PoolCluster.PoolClusterOptions): void;
41
- add(group: string, config: PoolCluster.PoolClusterOptions): void;
+ add(config: PoolOptions): void;
+ add(group: string, config: PoolOptions): void;
42
43
end(): void;
44
0 commit comments