Merge branch 'main' into dependabot/github_actions/sonarsource/sonarcloud-github...
[e-mobility-charging-stations-simulator.git] / src / types / Error.ts
... / ...
CommitLineData
1import type { JsonType } from './JsonType';
2
3export interface HandleErrorParams<T extends JsonType> {
4 throwError?: boolean;
5 consoleOut?: boolean;
6 errorResponse?: T;
7}