| 41 | ) => Promise<Database | null>; |
| 42 | |
| 43 | interface Options { |
| 44 | workingDir?: string; |
| 45 | appDataDir?: string; |
| 46 | filterTypes?: (keyof Database)[]; |
| 47 | src?: string; |
| 48 | } |
| 49 | |
| 50 | export const loadDb = async ({ |
| 51 | workingDir, |
nothing calls this directly
no outgoing calls
no test coverage detected