Closed
Description
While building my project I get an error:
node_modules/mysql2/index.d.ts:86:18 - error TS2320: Interface 'PoolConnection' cannot simultaneously extend types 'PoolConnection' and 'Connection'.
Named property 'execute' of types 'PoolConnection' and 'Connection' are not identical.
86 export interface PoolConnection extends mysql.PoolConnection, Connection {
~~~~~~~~~~~~~~
node_modules/mysql2/index.d.ts:86:18 - error TS2320: Interface 'PoolConnection' cannot simultaneously extend types 'PoolConnection' and 'Connection'.
Named property 'unprepare' of types 'PoolConnection' and 'Connection' are not identical.
86 export interface PoolConnection extends mysql.PoolConnection, Connection {
The version of mysql2 I am using is 3.1.2
, I can build the project using --skipLibCheck
but I would prefer to avoid it.