7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
import http from 'node:http'
|
|
import https from 'node:https'
|
|
|
|
type HttpServerLike = http.Server | https.Server
|
|
|
|
export default HttpServerLike
|