mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-01 05:49:54 +00:00
### Summary Complete redesign of Desktop app installer, implementing the new app startup progress system and error reporting.
7 lines
113 B
TypeScript
7 lines
113 B
TypeScript
export enum ValidationState {
|
|
IDLE = 'IDLE',
|
|
LOADING = 'LOADING',
|
|
VALID = 'VALID',
|
|
INVALID = 'INVALID'
|
|
}
|