mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 06:01:52 +08:00
21 lines
336 B
JavaScript
21 lines
336 B
JavaScript
/*
|
|
_ __ _ __
|
|
| | / /___ _(_) /____
|
|
| | /| / / __ `/ / / ___/
|
|
| |/ |/ / /_/ / / (__ )
|
|
|__/|__/\__,_/_/_/____/
|
|
The electron alternative for Go
|
|
(c) Lea Anthony 2019-present
|
|
*/
|
|
|
|
/* jshint esversion: 9 */
|
|
|
|
/**
|
|
* Reloads the Window
|
|
*
|
|
* @export
|
|
*/
|
|
export function WindowReload() {
|
|
window.runtime.WindowReload();
|
|
}
|