diff --git a/src/store/index.ts b/src/store/index.ts index 14b13707..f0cabae9 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -8,5 +8,12 @@ export type AppWindowSettings = { export type DesktopSettings = { basePath?: string; + /** + * The state of the installation. + * - `started`: The installation has started. + * - `installed`: A fresh installation. + * - `upgraded`: An upgrade from a previous version that stores the base path + * in the yaml config. + */ installState?: 'started' | 'installed' | 'upgraded'; };