Establish the Electron foundation and pluggable agent runtime so desktop workflows can evolve safely across supported platforms. Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
12 lines
178 B
TypeScript
12 lines
178 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
import type { DesktopApi } from '../../shared/contracts'
|
|
|
|
declare global {
|
|
interface Window {
|
|
goodbuddy: DesktopApi
|
|
}
|
|
}
|
|
|
|
export {}
|