(result: string | string[] | null)
| 29 | }; |
| 30 | |
| 31 | const selectedPath = (result: string | string[] | null) => |
| 32 | typeof result === "string" ? result : null; |
| 33 | |
| 34 | const maybeHideCurrentWindow = async (options?: ImportOptions) => { |
| 35 | if (options?.hideCurrentWindow) await getCurrentWindow().hide(); |
no outgoing calls
no test coverage detected