mirror of
https://github.com/antebudimir/feishin.git
synced 2026-03-02 04:07:25 +00:00
11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
|
|
import { ElectronAPI } from '@electron-toolkit/preload';
|
||
|
|
|
||
|
|
import { PreloadApi } from './index';
|
||
|
|
|
||
|
|
declare global {
|
||
|
|
interface Window {
|
||
|
|
api: PreloadApi;
|
||
|
|
electron: ElectronAPI;
|
||
|
|
}
|
||
|
|
}
|