We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
3.1.2
--skipLibCheck
The text was updated successfully, but these errors were encountered:
Hi @krzar, we currently have a TypeScript Build Test since the #1957 was merged.
Also, this issue has been fixed in version ^3.2.2 in PR #1955.
^3.2.2
I'm closing this Issue, but feel free to ask anything 🙋🏻♂️
Sorry, something went wrong.
No branches or pull requests
While building my project I get an error:
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.The text was updated successfully, but these errors were encountered: