jbilcke-hf's picture
jbilcke-hf HF staff
initial commit 🤳
6da9beb
raw
history blame
No virus
163 Bytes
export type TaskStatus =
| "idle"
| "generating"
| "finished"
| "error"
export type GlobalStatus =
| "idle"
| "generating"
| "finished"
| "error"