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