fixed build with latest dependencies

This commit is contained in:
William Welling
2017-09-26 10:37:54 -05:00
parent fe897f30df
commit 88120dd85b
16 changed files with 91 additions and 210 deletions

View File

@@ -10,6 +10,7 @@ export const StoreActionTypes = {
export class StoreAction implements Action {
type: string;
payload: AppState | Action[];
// tslint:disable-next-line:no-shadowed-variable
constructor(type: string, payload: AppState | Action[]) {
this.type = type;
this.payload = payload;