()
| 5 | import { DialogType, promptForOpenOutputChannel } from "../utils/uiUtils"; |
| 6 | |
| 7 | export async function deleteCache(): Promise<void> { |
| 8 | try { |
| 9 | await leetCodeExecutor.deleteCache(); |
| 10 | } catch (error) { |
| 11 | await promptForOpenOutputChannel("Failed to delete cache. Please open the output channel for details.", DialogType.error); |
| 12 | } |
| 13 | } |
no test coverage detected