lbry-desktop/src/platforms/web/stubs.js

24 lines
395 B
JavaScript
Raw Normal View History

2019-03-05 05:46:57 +01:00
const callable = () => {
throw Error('Need to fix this stub');
};
export const remote = {
dialog: {
showOpenDialog: callable,
},
getCurrentWindow: callable,
app: {
getAppPath: callable,
2019-07-29 16:34:20 +02:00
getLocale: () => 'en',
2019-03-05 05:46:57 +01:00
},
BrowserWindow: {
getFocusedWindow: callable,
},
Menu: {
getApplicationMenu: callable,
},
require: callable,
};
export const isDev = false;