build(ci): fix linting
[e-mobility-charging-stations-simulator.git] / ui / web / src / composables / UIClient.ts
index c2f1b0c21bff809e568ef386b612c3fba5812e02..3e7856e483115bb6911a76a345efff0430638566 100644 (file)
@@ -128,7 +128,7 @@ export default class UIClient {
     id: string,
     procedureName: ProcedureName,
     resolve: (value: ResponsePayload | PromiseLike<ResponsePayload>) => void,
-    reject: (reason?: any) => void
+    reject: (reason?: unknown) => void
   ): void {
     this.responseHandlers.set(id, { procedureName, resolve, reject });
   }