()
| 304 | } |
| 305 | |
| 306 | export function openExternalBrowser(): void { |
| 307 | console.log('[openExternalBrowser]'); |
| 308 | if (activeBrowserUri) { |
| 309 | void env.openExternal(activeBrowserUri); |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | export async function showWebView(file: string, title: string, viewer: string | boolean): Promise<void> { |
| 314 | console.info(`[showWebView] file: ${file}, viewer: ${viewer.toString()}`); |
nothing calls this directly
no test coverage detected