Files
bodyshop-desktop/src/main/store/store.ts
2025-03-18 15:13:55 -07:00

25 lines
419 B
TypeScript

import Store from "electron-store";
const store = new Store({
defaults: {
settings: {
filepaths: [],
runWatcherOnStartup: true,
polling: {
enabled: false,
pollingInterval: 30000,
},
},
app: {
windowBounds: {
width: 800,
height: 600,
x: undefined,
y: undefined,
},
user: null,
},
},
});
export default store;