import { TracingHeaders } from './tracing'; export interface UserErrorResponse { code: string; locations: Array; message: string; path: Array; } interface LocationOfError { coloumn: number; line: number; } export interface ErrorData { url: string; method?: string; status?: number; responseBody?: object; requestBody?: object; location?: string; headers?: TracingHeaders; }