mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-14 19:52:10 +08:00
12 lines
262 B
TypeScript
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 }; |