aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/services/ConfigPersistenceService.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-12-28 13:51:16 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-12-28 13:51:16 +0100
commit5712e88785d600a63d59cb583f045375c8c16255 (patch)
tree0abe682c30d1d9c03f4dce2f6d551615026ee368 /packages/main/src/services/ConfigPersistenceService.ts
parentrefactor: Get rid of dependency injector (diff)
downloadsophie-5712e88785d600a63d59cb583f045375c8c16255.tar.gz
sophie-5712e88785d600a63d59cb583f045375c8c16255.tar.zst
sophie-5712e88785d600a63d59cb583f045375c8c16255.zip
refactor: Functional design for controllers
Diffstat (limited to 'packages/main/src/services/ConfigPersistenceService.ts')
-rw-r--r--packages/main/src/services/ConfigPersistenceService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/main/src/services/ConfigPersistenceService.ts b/packages/main/src/services/ConfigPersistenceService.ts
index 34d0e3e..1c0315f 100644
--- a/packages/main/src/services/ConfigPersistenceService.ts
+++ b/packages/main/src/services/ConfigPersistenceService.ts
@@ -24,7 +24,7 @@ import { throttle } from 'lodash';
24import { join } from 'path'; 24import { join } from 'path';
25 25
26import type { ConfigSnapshotOut } from '../stores/Config'; 26import type { ConfigSnapshotOut } from '../stores/Config';
27import type { Disposer } from '../utils'; 27import { Disposer } from '../utils';
28 28
29export type ReadConfigResult = { found: true; data: unknown; } | { found: false; }; 29export type ReadConfigResult = { found: true; data: unknown; } | { found: false; };
30 30