Files
Galaxies-my-app/types/person.ts
T
Dennis Hundertmark 0e7f7e1dfd Initial commit
Generated by create-expo-app 3.2.0.
2025-03-05 00:48:33 +01:00

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;
}