File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ class Driver {
159
159
*
160
160
* @returns {Promise<boolean> } promise resolved with a boolean or rejected with error.
161
161
*/
162
- supportsMultiDb ( ) : Promise < Boolean > {
162
+ supportsMultiDb ( ) : Promise < boolean > {
163
163
const connectionProvider = this . _getOrCreateConnectionProvider ( )
164
164
return connectionProvider . supportsMultiDb ( )
165
165
}
@@ -172,7 +172,7 @@ class Driver {
172
172
*
173
173
* @returns {Promise<boolean> } promise resolved with a boolean or rejected with error.
174
174
*/
175
- supportsTransactionConfig ( ) {
175
+ supportsTransactionConfig ( ) : Promise < boolean > {
176
176
const connectionProvider = this . _getOrCreateConnectionProvider ( )
177
177
return connectionProvider . supportsTransactionConfig ( )
178
178
}
You can’t perform that action at this time.
0 commit comments