ntt-flow
Version:
The sequence of initialization, modification, aggregation, or other processes through which a data entity passes from instantiation to persistence.
17 lines (16 loc) • 379 B
TypeScript
import { Reducer } from './Reducer';
export declare const arrayActions: {
ADD: string;
APPEND: string;
CLEAR: string;
POP: string;
PUSH: string;
REMOVE: string;
REVERSE: string;
SHIFT: string;
SORT: string;
SPLICE: string;
UNSHIFT: string;
};
declare const reduceArray: Reducer<Array<any>>;
export default reduceArray;