Skip to content

Instantly share code, notes, and snippets.

@intojs
Last active May 21, 2017 13:44
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 intojs/b0abddadd4fd0bbff6bf55b2429232f6 to your computer and use it in GitHub Desktop.
Save intojs/b0abddadd4fd0bbff6bf55b2429232f6 to your computer and use it in GitHub Desktop.
redux-like-state-management-in-angular
import { Repo } from './Repo';
export interface Repos {
isLoading: boolean;
repos: Repo[];
hasError: boolean;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment