mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-19 00:40:11 -07:00
11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
|
|
export const remote = {
|
|
getGlobal: (name: string) => {
|
|
if (name === 'appPath') {
|
|
return __dirname;
|
|
}
|
|
return '';
|
|
},
|
|
};
|