refactor imports (#5058)

This commit is contained in:
Jeremy Letto 2024-06-17 00:00:23 -05:00 committed by GitHub
parent c4bf9eb61c
commit bdcd083eea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 12 additions and 18 deletions

View file

@ -1,6 +1,6 @@
import { AdminCommands } from 'websocket';
export default class AdminService {
export class AdminService {
static adjustMod(userName: string, shouldBeMod?: boolean, shouldBeJudge?: boolean): void {
AdminCommands.adjustMod(userName, shouldBeMod, shouldBeJudge);
}