devex: update zest.pike comment

Also remove errant gitignore update
This commit is contained in:
tomholford 2022-11-05 01:45:57 -07:00
parent a4a022f006
commit d99dc3e3ab
2 changed files with 8 additions and 2 deletions

2
.gitignore vendored
View File

@ -84,5 +84,3 @@ pkg/interface/link-webext/web-ext-artifacts
*.log
.vercel
pkg/hodl/

View File

@ -191,6 +191,14 @@ export interface Pike {
wefts: Weft[];
/**
* how live is this pike?
*
* live - app is running
* held - app is not running, but is trying to run. this state can be entered
* in two main ways:
* - when installing an app but it hasn't finished downloading (or it did
* but failed to install for some reason)
* - when user forced a kelvin upgrade by suspending desks.
* dead - app is not running
*/
zest: "live" | "dead" | "held";
}