UNPKG

ntt-flow

Version:

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

10 lines (9 loc) 249 B
import { Reducer } from './Reducer'; export declare const numberActions: { DECREMENT: string; DIVIDE: string; INCREMENT: string; MULTIPLY: string; }; declare const reduceNumber: Reducer<number>; export default reduceNumber;