diff --git a/README.md b/README.md index 537593a..6eff784 100644 --- a/README.md +++ b/README.md @@ -54,11 +54,14 @@ Angular 2 components: ```typescript import { NgRedux } from 'ng2-redux'; +interface IAppState { + // ... +}; @Component({ // ... etc. }) class AppComponent { - constructor(private ngRedux: NgRedux) {} + constructor(private ngRedux: NgRedux) {} // ... }