- angular 5 : http://devdocs.io/
- rxjs 5 : https://github.com/ReactiveX/rxjs/tree/stable/doc
// 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})
}
}