responseTypes.ts 207 Bytes
Newer Older
1
2
3
4
5
6
export const paramMissingError = 'One or more of the required parameters was missing.'
export const notFoundError = 'No resource found for given parameters.'

export interface ApiError {
    error: string
}