mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-01 23:02:26 +00: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[]
|
|
}
|
|
}
|
|
}
|