@wails/runtime
Version:
Wails V2 Javascript runtime library
22 lines (20 loc) • 429 B
JavaScript
/*
_ __ _ __
| | / /___ _(_) /____
| | /| / / __ `/ / / ___/
| |/ |/ / /_/ / / (__ )
|__/|__/\__,_/_/_/____/
The lightweight framework for web-like apps
(c) Lea Anthony 2019-present
*/
/* jshint esversion: 6 */
/**
* Opens the given URL or Filename in the system browser
*
* @export
* @param {string} target
* @returns
*/
export function Open(target) {
return window.wails.Browser.Open(target);
}