mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-02 10:15:11 +00:00
22 lines
368 B
JavaScript
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;
|