(filename: string)
| 66 | } |
| 67 | |
| 68 | export async function getDatabaseFilePath(filename: string): Promise<string> { |
| 69 | const platform = getPlatformService(); |
| 70 | return platform.joinPath(await getDesktopDataRoot(), filename); |
| 71 | } |
| 72 | |
| 73 | async function getDatabaseLocation(filename: string): Promise<string> { |
| 74 | const platform = getPlatformService(); |
no test coverage detected