mirror of
https://github.com/fergalmoran/mixyboos.git
synced 2026-02-15 12:34:48 +00:00
11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
enum ShowStatus {
|
|
checking = "checking",
|
|
setup = "setup",
|
|
awaitingStreamConnection = "awaitingStreamConnection",
|
|
inProgress = "inProgress",
|
|
ended = "ending",
|
|
error = "error",
|
|
}
|
|
|
|
export default ShowStatus;
|