fix: ensure error at adding charging stations not stop further
[e-mobility-charging-stations-simulator.git] / src / types / Error.ts
index 885edfdb3232650234fe7099c689feef485bd290..34bad1ad4eabbf612fa2c27398def5fea4434f73 100644 (file)
@@ -1,7 +1,7 @@
-import type { JsonType } from './JsonType';
+import type { JsonType } from './JsonType.js'
 
-export type HandleErrorParams<T extends JsonType> = {
-  throwError?: boolean;
-  consoleOut?: boolean;
-  errorResponse?: T;
-};
+export interface HandleErrorParams<T extends JsonType> {
+  throwError?: boolean
+  consoleOut?: boolean
+  errorResponse?: T
+}