build: switch to NodeNext module resolution
[e-mobility-charging-stations-simulator.git] / src / types / Error.ts
CommitLineData
a6ef1ece 1import type { JsonType } from './JsonType.js';
7b5dbe91 2
e1d9a0f4 3export interface HandleErrorParams<T extends JsonType> {
e0a50bcd
JB
4 throwError?: boolean;
5 consoleOut?: boolean;
717c1e56 6 errorResponse?: T;
e1d9a0f4 7}