| 9 | export type AppDatabase = ReturnType<typeof createDrizzleDatabase>; |
| 10 | |
| 11 | export interface DatabaseHandle { |
| 12 | sqlite: SqliteDatabase; |
| 13 | db: AppDatabase; |
| 14 | close(): void; |
| 15 | } |
| 16 | |
| 17 | export function databasePath(stateDir: string): string { |
| 18 | return join(stateDir, "devspace.sqlite"); |
no outgoing calls
no test coverage detected