Skip to content

hangxun/pet-ngrx

Repository files navigation

ngrx

bug1: Property Payload does not exist on type

ngrx/platform#31

// you can create your CustomAction

export interface CustomAction extends Action {
type: string;
payload?: any;
}

// and then reuse it
import { Action } from '@ngrx/store';

export class MyState {
  fieldOne: string,
  fieldTwo: string
}

export class MyStateAction implements Action {
  type: string;
  fieldOne: string;
  fieldTwo: int;
}

export function myReducer(state: MyState, action: MyStateAction) {
  switch(action.type) {
    case 'something':
      return Object.assign({fieldOne: action.fieldOne, fieldTwo: action.fieldTwo})
  }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages