export interface Email { id: string; attributes: { address: string; primary: boolean; }; } export interface PhoneNumber { id: string; attributes: { number: string; location: string; }; } export interface Person { id: string; attributes: { name: string; avatar: string; }; relationships: { emails: { data: { id: string; }[]; }; phone_numbers: { data: { id: string; }[]; }; }; } export type SearchResult = { data: Person; included?: Array; }; //# sourceMappingURL=types.d.ts.map