@bengo.co/typescript-web-starter
Version:
A simple website project written in TypeScript. Use this as a starting point for your project.
23 lines (22 loc) • 393 B
text/typescript
/**
* Matches come back in response to searching with some Filters
*/
export interface Match {
_id: string;
display_name: string;
age: number;
job_title: string;
height_in_cm: number;
city: {
name: string;
location: {
lat: number;
lon: number;
};
};
main_photo: string;
compatibility_score: number;
contacts_exchanged: number;
favourite: boolean;
religion: string;
}