mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-18 08:20:10 -07:00
12 lines
229 B
TypeScript
12 lines
229 B
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
|
|
export const remote = {
|
|
getGlobal: (name: string) => {
|
|
if (name === 'appPath') {
|
|
return __dirname;
|
|
}
|
|
return '';
|
|
},
|
|
};
|
|
export const ipcRenderer = jest.fn();
|