chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / src / types / Error.ts
1 import type { JsonType } from './JsonType.js'
2
3 export interface HandleErrorParams<T extends JsonType> {
4 throwError?: boolean
5 consoleOut?: boolean
6 errorResponse?: T
7 }