webapp/src/ts/protocol/MuteState.ts
modeco80 125e6a769d reformat typescript code with prettier
Mostly just for nicity. I did manually clean up a few things, but other than that, this basically was just importing configs from cvm3/crusttest, adding prettier as a dev dependency, and just ctrl-shift-I on every typescript file part of the codebase
2024-03-12 01:28:23 -04:00

8 lines
82 B
TypeScript

enum MuteState {
Temp = 0,
Perma = 1,
Unmuted = 2
}
export default MuteState;