1 files changed, 0 insertions, 9 deletions
diff --git a/src/util/util/lambert-server/Server.ts b/src/util/util/lambert-server/Server.ts
index e9cb675b..ac45f206 100644
--- a/src/util/util/lambert-server/Server.ts
+++ b/src/util/util/lambert-server/Server.ts
@@ -2,15 +2,6 @@ import express, { Application, Router } from "express";
import { Server as HTTPServer } from "http";
import http from "http";
-declare global {
- // eslint-disable-next-line @typescript-eslint/no-namespace
- namespace Express {
- interface Request {
- server: Server;
- }
- }
-}
-
export type ServerOptions = {
port: number;
host: string;
|