Skip to content

Instantly share code, notes, and snippets.

@ghetolay
ghetolay / ngrx_actions.ts
Last active July 19, 2017 08:41
Pattern to build actions for ngrx
export interface Action<T> {
type: T;
}
export interface PayloadAction<T, R> {
readonly type: T;
payload: R;
}
export interface ActionFactory<T> {