/* _ __ _ __ | | / /___ _(_) /____ | | /| / / __ `/ / / ___/ | |/ |/ / /_/ / / (__ ) |__/|__/\__,_/_/_/____/ The electron alternative for Go (c) Lea Anthony 2019-present */ /* jshint esversion: 9 */ /** * The Screens API provides methods to interact with the system screens/monitors. */ export const Screens = { /** * Get the primary screen * @returns {Promise} */ GetPrimary: () => { return wails.Screens.GetPrimary(); }, /** * Get all screens * @returns {Promise} */ GetAll: () => { return wails.Screens.GetAll(); }, /** * Get the current screen * @returns {Promise} */ GetCurrent: () => { return wails.Screens.GetCurrent(); }, };