(path: string)
| 22 | import cursorInitCmd from "./init/cursor"; |
| 23 | |
| 24 | const openUrl = (path: string) => { |
| 25 | const settings = getSettings(undefined); |
| 26 | open(`${settings.auth.webUrl}${path}`, { wait: false }); |
| 27 | }; |
| 28 | |
| 29 | const throwHelpError = (option: string, value: string) => { |
| 30 | if (value === "help") { |
no test coverage detected