File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
import {
2
2
Connection as PromiseConnection ,
3
3
Pool as PromisePool ,
4
- PoolConnection as PromisePoolConnection2 ,
4
+ PoolConnection as PromisePoolConnection ,
5
5
} from './promise' ;
6
6
7
7
import * as mysql from './typings/mysql' ;
@@ -153,7 +153,7 @@ export interface Pool extends mysql.Connection {
153
153
getConnection (
154
154
callback : ( err : NodeJS . ErrnoException , connection : PoolConnection ) => any
155
155
) : void ;
156
- releaseConnection ( connection : PoolConnection | PromisePoolConnection2 ) : void ;
156
+ releaseConnection ( connection : PoolConnection | PromisePoolConnection ) : void ;
157
157
on ( event : 'connection' , listener : ( connection : PoolConnection ) => any ) : this;
158
158
on ( event : 'acquire' , listener : ( connection : PoolConnection ) => any ) : this;
159
159
on ( event : 'release' , listener : ( connection : PoolConnection ) => any ) : this;
You can’t perform that action at this time.
0 commit comments