(dbPath: string)
| 5 | private db: sqlite3.Database |
| 6 | |
| 7 | constructor(dbPath: string) { |
| 8 | this.db = new sqlite3.Database(dbPath) |
| 9 | } |
| 10 | |
| 11 | async run(sql: string, params: any[] = []): Promise<sqlite3.RunResult> { |
| 12 | return new Promise((resolve, reject) => { |
nothing calls this directly
no outgoing calls
no test coverage detected