mirror of
https://github.com/davidkaya/aryx.git
synced 2026-07-24 21:48:36 +02:00
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
10 lines
141 B
TypeScript
10 lines
141 B
TypeScript
import type { ElectronApi } from '@shared/contracts/ipc';
|
|
|
|
declare global {
|
|
interface Window {
|
|
aryxApi: ElectronApi;
|
|
}
|
|
}
|
|
|
|
export {};
|