format codebase with prettier

This commit is contained in:
Evan
2025-01-30 19:46:36 -08:00
parent cd121a5cd4
commit 4ee37323f9
98 changed files with 12191 additions and 10234 deletions
+11 -13
View File
@@ -1,16 +1,14 @@
import WebSocket from 'ws';
import { ClientID } from '../core/Schemas';
import WebSocket from "ws";
import { ClientID } from "../core/Schemas";
export class Client {
public lastPing: number;
public lastPing: number
constructor(
public readonly clientID: ClientID,
public readonly persistentID: string,
public readonly ip: string | null,
public readonly username: string,
public readonly ws: WebSocket,
) { }
}
constructor(
public readonly clientID: ClientID,
public readonly persistentID: string,
public readonly ip: string | null,
public readonly username: string,
public readonly ws: WebSocket,
) {}
}