@nodert-win10/windows.gaming.ui
Version:
Use the Windows.Gaming.UI UWP API directly from Node.js
16 lines (12 loc) • 479 B
JavaScript
GameBar = (function () {
var cls = function GameBar() {
};
cls.isInputRedirected = new Boolean();
cls.visible = new Boolean();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.GameBar = GameBar;