| 1 | declare module "bun:sqlite" { |
| 2 | export interface SQLiteQuery { |
| 3 | get(binding?: unknown): unknown; |
| 4 | all(binding?: unknown): unknown[]; |
| 5 | } |
| 6 | |
| 7 | export class Database { |
| 8 | constructor(filename?: string, options?: { create?: boolean; strict?: boolean; readonly?: boolean }); |
nothing calls this directly
no outgoing calls
no test coverage detected