Files
LingChair/server/typedef/HttpServerLike.ts
2025-09-06 16:37:22 +08:00

7 lines
141 B
TypeScript

import http from 'node:http'
import https from 'node:https'
type HttpServerLike = http.Server | https.Server
export default HttpServerLike