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

fix: make ErrorBody interface public

So it could be used as a type in client
This commit is contained in:
2022-03-18 17:12:49 +01:00
parent 804e78cf0c
commit a54df1e2cb
2 changed files with 2 additions and 1 deletions

View File

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

View File

@@ -11,3 +11,4 @@ export * from './RootFolderNotFoundError'
export * from './JsonParseArrayError' export * from './JsonParseArrayError'
export * from './WeboutResponseError' export * from './WeboutResponseError'
export * from './InvalidJsonError' export * from './InvalidJsonError'
export * from './ErrorResponse'