/** * Used in the getFriendshipData method as a return value */ export interface Friendship { friendshipId: string; friendId: string; friendFirstName: string; friendLastName: string; friendUsername: string; }