summaryrefslogtreecommitdiff
path: root/config/Config.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-19 15:03:22 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-19 15:03:22 +1000
commitdf4b3b85a949c6aa1952963a7455f88578a080d5 (patch)
treedea13f6d90e8ccefef03e9a4620d3708e3bcd3ee /config/Config.qml
parentwallpapers: show subdirs in name (diff)
downloadcaelestia-shell-df4b3b85a949c6aa1952963a7455f88578a080d5.tar.gz
caelestia-shell-df4b3b85a949c6aa1952963a7455f88578a080d5.tar.bz2
caelestia-shell-df4b3b85a949c6aa1952963a7455f88578a080d5.zip
internal: fix types for lsp
Diffstat (limited to 'config/Config.qml')
-rw-r--r--config/Config.qml22
1 files changed, 11 insertions, 11 deletions
diff --git a/config/Config.qml b/config/Config.qml
index 2b8eff7..e713023 100644
--- a/config/Config.qml
+++ b/config/Config.qml
@@ -28,17 +28,17 @@ Singleton {
JsonAdapter {
id: adapter
- property JsonObject bar: BarConfig {}
- property JsonObject border: BorderConfig {}
- property JsonObject dashboard: DashboardConfig {}
- property JsonObject launcher: LauncherConfig {}
- property JsonObject notifs: NotifsConfig {}
- property JsonObject osd: OsdConfig {}
- property JsonObject session: SessionConfig {}
- property JsonObject winfo: WInfoConfig {}
- property JsonObject lock: LockConfig {}
- property JsonObject services: ServiceConfig {}
- property JsonObject paths: UserPaths {}
+ property BarConfig bar: BarConfig {}
+ property BorderConfig border: BorderConfig {}
+ property DashboardConfig dashboard: DashboardConfig {}
+ property LauncherConfig launcher: LauncherConfig {}
+ property NotifsConfig notifs: NotifsConfig {}
+ property OsdConfig osd: OsdConfig {}
+ property SessionConfig session: SessionConfig {}
+ property WInfoConfig winfo: WInfoConfig {}
+ property LockConfig lock: LockConfig {}
+ property ServiceConfig services: ServiceConfig {}
+ property UserPaths paths: UserPaths {}
}
}
}