mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-17 12:56:41 +02:00
13 lines
223 B
TypeScript
13 lines
223 B
TypeScript
import type { ElectronAPI } from "../preload/types"
|
|
|
|
declare global {
|
|
interface Window {
|
|
api: ElectronAPI
|
|
__OPENCODE__?: {
|
|
updaterEnabled?: boolean
|
|
wsl?: boolean
|
|
deepLinks?: string[]
|
|
}
|
|
}
|
|
}
|