1
0
mirror of https://github.com/pavlobu/deskreen.git synced 2025-05-18 08:20:10 -07:00
deskreen/app/containers/__mocks__/electron-settings.ts
2020-12-25 01:11:01 +02:00

15 lines
243 B
TypeScript

export default {
hasSync: (name: string) => {
if (name === 'appLanguage') {
return true;
}
return false;
},
getSync: (name: string) => {
if (name === 'appLanguage') {
return 'en';
}
return '';
},
};