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