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