aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/api-error.ts
blob: 4dd68f375280b97fec5c411f309e8a9cc31caf1a (plain) (blame)
1
2
3
4
5
6
export interface IApiError {
  type: string;
  title: string;
  status: number;
  traceId: string;
}