summary refs log tree commit diff
path: root/src/util/schemas/responses/APIErrorResponse.ts
blob: 25bb950444d3827ba8df0076de66b7d8ee704d52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
export interface APIErrorResponse {
	code: number;
	message: string;
	errors: {
		[key: string]: {
			_errors: {
				message: string;
				code: string;
			}[];
		};
	};
}