UNPKG

ntt-flow

Version:

The sequence of initialization, modification, aggregation, or other processes through which a data entity passes from instantiation to persistence.

8 lines (7 loc) 222 B
export interface Action { type: any; } export declare type Reducer<T = any, A extends Action = Action> = (value: T, action: A) => T; export interface ReducerMap { [key: string]: Reducer<any> | ReducerMap; }