| 32 | import { compileSchema } from './shared/utils/schema-validator.js'; |
| 33 | |
| 34 | export interface HTTPServerOptions { |
| 35 | concurrent: number; |
| 36 | host: string; |
| 37 | port: string; |
| 38 | queued: number; |
| 39 | timeout: number; |
| 40 | } |
| 41 | |
| 42 | export class HTTPServer extends EventEmitter { |
| 43 | protected server: http.Server = http.createServer(); |
nothing calls this directly
no outgoing calls
no test coverage detected