api_tool/types.d.ts
2025-06-01 19:45:01 +02:00

9 lines
120 B
TypeScript

/**
* Extends the Main "Window" Interface
*/
interface Window {
electron: {
ping: () => Promise<string>;
};
}