Files
LingChair/server/types/HttpServerLike.ts
2025-08-30 14:43:45 +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