build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / Error.ts
CommitLineData
7b5dbe91
JB
1import type { JsonType } from './JsonType';
2
e1d9a0f4 3export interface HandleErrorParams<T extends JsonType> {
e0a50bcd
JB
4 throwError?: boolean;
5 consoleOut?: boolean;
717c1e56 6 errorResponse?: T;
e1d9a0f4 7}