| 17 | import Database from class="st">"better-sqlite3"; |
| 18 | |
| 19 | interface User { |
| 20 | id: number; |
| 21 | name: string; |
| 22 | email: string; |
| 23 | } |
| 24 | |
| 25 | export class UserDatabase { |
| 26 | private db: Database.Database; |
nothing calls this directly
no outgoing calls
no test coverage detected