Closed
Description
Attribute "promise" does not exist on type "Connection"
import mysql from 'mysql2'
import util from 'util'
const conn = mysql.createConnection({
host: '127.0.0.1',
user: 'root',
password: '12345678',
port: 3306,
database: 'domain',
rowsAsArray: true,
})
const db = conn.promise() // This line reported an error
export { db }