X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Fsrc%2Fcomposables%2FUIClient.ts;h=c2f1b0c21bff809e568ef386b612c3fba5812e02;hb=4147bb7ee6c183f244a10431b4dc53d71917f611;hp=5467d16d30fbe029e864a6fef8252a84d903e471;hpb=69074173770c04bc5e5aa744b655edf9491daa46;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/src/composables/UIClient.ts b/ui/web/src/composables/UIClient.ts index 5467d16d..c2f1b0c2 100644 --- a/ui/web/src/composables/UIClient.ts +++ b/ui/web/src/composables/UIClient.ts @@ -5,13 +5,13 @@ import { type RequestPayload, type ResponsePayload, ResponseStatus, -} from '@/types/UIProtocol'; +} from '@/types'; import config from '@/assets/config'; type ResponseHandler = { procedureName: ProcedureName; resolve: (value: ResponsePayload | PromiseLike) => void; - reject: (reason?: any) => void; + reject: (reason?: unknown) => void; }; export default class UIClient {