refactor(desktop): consolidate desktop-electron into desktop package (#25822)

This commit is contained in:
Brendan Allan 2026-05-05 13:43:36 +08:00 committed by GitHub
commit b4147c8d08
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
441 changed files with 113 additions and 13439 deletions

10
packages/desktop/src/renderer/env.d.ts vendored Normal file
View file

@ -0,0 +1,10 @@
import type { ElectronAPI } from "../preload/types"
declare global {
interface Window {
api: ElectronAPI
__OPENCODE__?: {
deepLinks?: string[]
}
}
}