Skip to content

Instantly share code, notes, and snippets.

@ankitamasand
Created April 17, 2019 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ankitamasand/ac3401cdefcb9bcb8f7dd36cc4c805f3 to your computer and use it in GitHub Desktop.
Save ankitamasand/ac3401cdefcb9bcb8f7dd36cc4c805f3 to your computer and use it in GitHub Desktop.
export interface PokemonListModel {
count: number;
next: string | null;
previous: string | null;
results: Array<Pokemon>
}
interface Pokemon {
name: string;
url: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment