You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i run npm install --save-dev types/mysql2#semver:1.0.0 it gives me the types that are pre PR-18. For instance, the createConnection method in promise.d.ts still returns a Connection, not Promise.
export function createConnection(connectionUri: string): Connection;
export function createConnection(config: ConnectionOptions): Connection;
Am I doing something wrong? Thanks
The text was updated successfully, but these errors were encountered:
When i run
npm install --save-dev types/mysql2#semver:1.0.0
it gives me the types that are pre PR-18. For instance, the createConnection method in promise.d.ts still returns a Connection, not Promise.export function createConnection(connectionUri: string): Connection;
export function createConnection(config: ConnectionOptions): Connection;
Am I doing something wrong? Thanks
The text was updated successfully, but these errors were encountered: