fix: restore clone modal invoke typing

This commit is contained in:
lucaronin
2026-04-24 15:18:50 +02:00
parent 9ce1c6f854
commit 622977aeb8

View File

@@ -16,7 +16,7 @@ type CloneStatus = 'idle' | 'cloning' | 'error'
type CloneAttemptResult =
| { ok: true }
| { ok: false; errorMessage: string }
interface CloneRequest {
type CloneRequest = Record<string, unknown> & {
url: string
localPath: string
}