1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-11 01:14:36 +00:00

Merge pull request #801 from sasjs/issue-680

ErrorBody interface made public
This commit is contained in:
Allan Bowe
2023-04-06 12:02:15 +01:00
committed by GitHub

View File

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