MCPcopy Create free account
hub / github.com/Railly/agentfiles / openExternal

Function openExternal

src/utils/shell.ts:21–28  ·  view source on GitHub ↗
(url: string)

Source from the content-addressed store, hash-verified

19}
20
21export function openExternal(url: string): void {
22 const shell = getElectronShell();
23 if (shell) {
24 void shell.openExternal(url);
25 return;
26 }
27 window.open(url, "_blank");
28}
29
30export function showItemInFolder(fullPath: string): void {
31 const shell = getElectronShell();

Callers 2

renderNoSkillkitMethod · 0.90
renderSkillkitCtaMethod · 0.90

Calls 2

getElectronShellFunction · 0.85
openExternalMethod · 0.80

Tested by

no test coverage detected