0e7f7e1dfd
Generated by create-expo-app 3.2.0.
19 lines
338 B
TypeScript
19 lines
338 B
TypeScript
export interface Person {
|
|
name: string;
|
|
height: string;
|
|
mass: string;
|
|
hair_color: string;
|
|
skin_color: string;
|
|
eye_color: string;
|
|
birth_year: string;
|
|
gender: string;
|
|
homeworld: string;
|
|
films: string[];
|
|
species: any[];
|
|
vehicles: string[];
|
|
starships: string[];
|
|
created: string;
|
|
edited: string;
|
|
url: string;
|
|
}
|