@rocali/expo-ts-rest-template
Version:
Expo project template with TypeScript, eslint, prettier, react-navigation, storybook, jest and examples for a quick start.
17 lines (15 loc) • 313 B
text/typescript
import { CharacterLocation } from './location';
export interface Character {
id: number;
name: string;
species: string;
type: string;
status: string;
location: CharacterLocation;
origin: CharacterLocation;
gender: string;
episode: string[];
image: string;
url: string;
created: string;
}