Skip to content

Instantly share code, notes, and snippets.

@daniele-zurico
Created June 19, 2018 18:11
Show Gist options
  • Save daniele-zurico/b099c5af03ffb937d35d7b080d87114e to your computer and use it in GitHub Desktop.
Save daniele-zurico/b099c5af03ffb937d35d7b080d87114e to your computer and use it in GitHub Desktop.
export interface State {
isLoading: boolean;
error: HttpErrorResponse | null;
data: Hero[] | null;
next: string | null;
previous: string | null;
page: number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment