lbry-desktop/src/platforms/web/stubs.js
Sean Yesmunt 60543562aa tags
2019-06-17 15:46:19 -04:00

22 lines
368 B
JavaScript

const callable = () => {
throw Error('Need to fix this stub');
};
export const remote = {
dialog: {
showOpenDialog: callable,
},
getCurrentWindow: callable,
app: {
getAppPath: callable,
},
BrowserWindow: {
getFocusedWindow: callable,
},
Menu: {
getApplicationMenu: callable,
},
require: callable,
};
export const isDev = false;