Skip to content

Commit

Permalink
Add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
huchenlei committed Dec 3, 2024
1 parent 64fab8d commit 4f27889
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/store/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
};

0 comments on commit 4f27889

Please sign in to comment.