Files
electron-egg/electronts/preload/index.ts
2025-01-02 19:20:41 +08:00

12 lines
262 B
TypeScript

/**
* Preload module, this file will be loaded when the program starts.
*/
function preload(): void {
// Example feature module, optional to use and modify
console.log('preload/index.js');
}
/**
* Entry point of the preload module
*/
export { preload };