refactor: flag tunable as deprecated
[e-mobility-charging-stations-simulator.git] / src / types / Error.ts
index c599438ce3554f6c4858d11e14508b0d48ff3199..6a7c04e21fa38f7ee573deaad7b16dc623cb36df 100644 (file)
@@ -1,4 +1,7 @@
-export interface HandleErrorParams {
+import type { JsonType } from './JsonType';
+
+export interface HandleErrorParams<T extends JsonType> {
   throwError?: boolean;
   consoleOut?: boolean;
+  errorResponse?: T;
 }