summary refs log tree commit diff
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-03-21 14:45:43 +0100
committerRory& <root@rory.gay>2026-03-21 14:45:43 +0100
commite59154d2805f3e77ef7eb07200f89dc18108cedb (patch)
treeb5c96889d3c714464e222ac33c77e78cc6d34b3b
parentmake spacebar compile again (diff)
downloadserver-ts-e59154d2805f3e77ef7eb07200f89dc18108cedb.tar.xz
lambert-server: remove global namespace pollution for server
-rw-r--r--src/util/util/lambert-server/Server.ts9
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;