修正正確的 HttpServerLike 導出

This commit is contained in:
CrescentLeaf
2025-08-16 15:30:53 +08:00
parent 1906ad8c07
commit a491b6206f

View File

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