fix: various fixes to files handling and their content caching
[e-mobility-charging-stations-simulator.git] / src / types / Error.ts
CommitLineData
7b5dbe91
JB
1import type { JsonType } from './JsonType';
2
3export type HandleErrorParams<T extends JsonType> = {
e0a50bcd
JB
4 throwError?: boolean;
5 consoleOut?: boolean;
717c1e56 6 errorResponse?: T;
83e00df1 7};