From a491b6206fdd5acc55f27047a0bacb9ed4b7e3ac Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sat, 16 Aug 2025 15:30:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E6=AD=A3=E7=A2=BA=E7=9A=84?= =?UTF-8?q?=20HttpServerLike=20=E5=B0=8E=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types/HttpServerLike.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/types/HttpServerLike.ts b/src/types/HttpServerLike.ts index 779bcbc..34cf14c 100644 --- a/src/types/HttpServerLike.ts +++ b/src/types/HttpServerLike.ts @@ -1,4 +1,6 @@ import http from 'node:http' import https from 'node:https' -export type HttpServerLike = http.Server | https.Server +type HttpServerLike = http.Server | https.Server + +export default HttpServerLike