diff options
Diffstat (limited to 'src/stores/settingsSyncTimes.ts')
| -rw-r--r-- | src/stores/settingsSyncTimes.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/stores/settingsSyncTimes.ts b/src/stores/settingsSyncTimes.ts new file mode 100644 index 00000000..d9b790d2 --- /dev/null +++ b/src/stores/settingsSyncTimes.ts @@ -0,0 +1,13 @@ +import { writable } from 'svelte/store'; + +interface SettingsSyncTimes { + lastPush: Date; + lastPull: Date; +} + +const settingsSyncPulled = writable<SettingsSyncTimes>({ + lastPush: new Date(), + lastPull: new Date() +}); + +export default settingsSyncPulled; |