9 lines
120 B
TypeScript
9 lines
120 B
TypeScript
/**
|
|
* Extends the Main "Window" Interface
|
|
*/
|
|
interface Window {
|
|
electron: {
|
|
ping: () => Promise<string>;
|
|
};
|
|
}
|