UNPKG

227 BTypeScriptView Raw
1export type RequestError = {
2 name: string;
3 status: number;
4 documentation_url: string;
5 errors?: Array<{
6 resource: string;
7 code: string;
8 field: string;
9 message?: string;
10 }>;
11};