UNPKG

json-api-deserialize

Version:

A deserializer for JSON:API responses

13 lines (12 loc) 244 B
export default interface IError { id?: any; // JSON:API spec just says "a unique identifier" links?: { about?: string; }; status?: string; code?: string; title?: string; detail?: string; source?: object; meta?: object; };