summaryrefslogtreecommitdiff
path: root/backend/src/types/express.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'backend/src/types/express.d.ts')
-rw-r--r--backend/src/types/express.d.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/backend/src/types/express.d.ts b/backend/src/types/express.d.ts
index 266a9f9..7e93345 100644
--- a/backend/src/types/express.d.ts
+++ b/backend/src/types/express.d.ts
@@ -1,12 +1,7 @@
import type { AuthorizedUser } from "./user.js";
-import { Server } from "socket.io";
declare global {
namespace Express {
- interface Application {
- io: Server;
- }
-
interface Request {
user?: AuthorizedUser;
}