This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
2023-04-13 14:58:53 -04:00

13 lines
171 B
TypeScript

export interface APIErrorResponse {
code: number;
message: string;
errors: {
[key: string]: {
_errors: {
message: string;
code: string;
}[];
};
};
}