1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-08 21:10:05 +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
constructor(message: string, details?: any) {
let detailsString = '';
let detailsString = ''
let raw
try {
@@ -21,6 +21,6 @@ export class ErrorResponse {
interface ErrorBody {
message: string
details: string,
details: string
raw: any
}