lambert-server: remove global namespace pollution for server

This commit is contained in:
Rory&
2026-03-21 14:45:43 +01:00
parent 7a92946bed
commit e59154d280

View File

@@ -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;