0e7f7e1dfd
Generated by create-expo-app 3.2.0.
17 lines
317 B
TypeScript
17 lines
317 B
TypeScript
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;
|
|
}
|