Newer
Older
percord / src / util / schemas / responses / APIErrorResponse.ts
@Puyodead1 Puyodead1 on 13 Apr 2023 171 bytes auth routes
export interface APIErrorResponse {
	code: number;
	message: string;
	errors: {
		[key: string]: {
			_errors: {
				message: string;
				code: string;
			}[];
		};
	};
}