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

fix: ErrorBody interface made public

This commit is contained in:
2023-04-06 12:45:22 +02:00
parent afda43fc7f
commit dd3a7fe393

View File

@@ -21,8 +21,8 @@ export class ErrorResponse {
} }
} }
interface ErrorBody { export interface ErrorBody {
message: string message: string
details: string details: any
raw: any raw: any
} }