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
8 lines
82 B
TypeScript
8 lines
82 B
TypeScript
enum MuteState {
|
|
Temp = 0,
|
|
Perma = 1,
|
|
Unmuted = 2
|
|
}
|
|
|
|
export default MuteState;
|