Skip to content

Commit

Permalink
fix(error): fixes after cr.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciej Kucmus committed Oct 29, 2019
1 parent c751271 commit fed7688
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions packages/shopware-6-client/src/interfaces/response/Error.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
interface ErrorTrace {
file: string;
line: number;
function: string;
class: string;
type: string;
args: any[];
}

interface Error {
status: string;
code: string;
title: string;
detail: string;
meta: any;
trace?: ErrorTrace[];
file: string;
line: number;
function: string;
class: string;
type: string;
args: any[];
}>;
}

export interface ErrorResponse {
Expand Down

0 comments on commit fed7688

Please sign in to comment.