From c98cba2eefeffa8b33f6ccf3c253311d97a90e08 Mon Sep 17 00:00:00 2001 From: Alex Holliday Date: Thu, 22 Jan 2026 21:02:34 +0000 Subject: [PATCH] shutdown -> ts --- server/src/shutdown.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/src/shutdown.ts b/server/src/shutdown.ts index 2287a6a4a..877aef325 100644 --- a/server/src/shutdown.ts +++ b/server/src/shutdown.ts @@ -1,7 +1,8 @@ import { InitializedServices } from "./config/services.js"; import { logger } from "./utils/logger.js"; +import type { Server } from "http"; -export const initShutdownListener = (server: any, services: InitializedServices) => { +export const initShutdownListener = (server: Server, services: InitializedServices) => { const SERVICE_NAME = "Server"; let isShuttingDown = false;