X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FUIHttpServer.ts;h=7c102195413aed23e4a68e5ee28abf1657a9fcf8;hb=ba9a56a613727d96757690a8b52af6731f3fd8a8;hp=eb3550830682f45cff76aff8559df71b34e855f5;hpb=13a6f27c10768faa05acf33fd8e0637511d49e3e;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ui-server/UIHttpServer.ts b/src/charging-station/ui-server/UIHttpServer.ts index eb355083..7c102195 100644 --- a/src/charging-station/ui-server/UIHttpServer.ts +++ b/src/charging-station/ui-server/UIHttpServer.ts @@ -1,4 +1,4 @@ -import type { IncomingMessage, RequestListener, ServerResponse } from 'node:http' +import type { IncomingMessage, ServerResponse } from 'node:http' import { StatusCodes } from 'http-status-codes' @@ -33,7 +33,7 @@ export class UIHttpServer extends AbstractUIServer { } public start (): void { - this.httpServer.on('request', this.requestListener.bind(this) as RequestListener) + this.httpServer.on('request', this.requestListener.bind(this)) this.startHttpServer() }