1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-17 09:00:06 +00:00

chore: lint

This commit is contained in:
Mihajlo Medjedovic
2020-09-15 13:24:20 +02:00
parent 8504ec6c4d
commit 4c9e48550e

View File

@@ -2,7 +2,7 @@ export class ErrorResponse {
body: ErrorBody body: ErrorBody
constructor(message: string, details?: any) { constructor(message: string, details?: any) {
let detailsString = ''; let detailsString = ''
let raw let raw
try { try {
@@ -21,6 +21,6 @@ export class ErrorResponse {
interface ErrorBody { interface ErrorBody {
message: string message: string
details: string, details: string
raw: any raw: any
} }