Initial commit
Generated by create-expo-app 3.2.0.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
export interface Film {
|
||||
title: string;
|
||||
episode_id: number;
|
||||
opening_crawl: string;
|
||||
director: string;
|
||||
producer: string;
|
||||
release_date: string;
|
||||
characters: string[];
|
||||
planets: string[];
|
||||
starships: string[];
|
||||
vehicles: string[];
|
||||
species: string[];
|
||||
created: string;
|
||||
edited: string;
|
||||
url: string;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user