(client: MysqlQueryable)
| 341 | * ``` |
| 342 | */ |
| 343 | export function createMysqlDatabaseAdapter(client: MysqlQueryable): MysqlDatabaseAdapter { |
| 344 | return new MysqlDatabaseAdapter(client) |
| 345 | } |
| 346 | |
| 347 | function isMysqlPool(client: MysqlQueryable): client is MysqlPool { |
| 348 | return 'getConnection' in client && typeof client.getConnection === 'function' |
no outgoing calls
no test coverage detected
searching dependent graphs…