20 lines
434 B
TypeScript
20 lines
434 B
TypeScript
import { APIFunctions } from '@janhq/core'
|
|
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
export {}
|
|
|
|
declare global {
|
|
declare const PLUGIN_CATALOG: string
|
|
declare const VERSION: string
|
|
declare const ANALYTICS_ID: string
|
|
declare const ANALYTICS_HOST: string
|
|
interface Core {
|
|
api: APIFunctions
|
|
events: EventEmitter
|
|
}
|
|
interface Window {
|
|
core?: Core | undefined
|
|
electronAPI?: any | undefined
|
|
}
|
|
}
|