UNPKG

subflow

Version:

Safety your data flow in TypeScript with flow-based primitives.

5 lines (4 loc) 264 B
import { Flow, Methods } from '../types/core'; import { ArrayFlowMethods } from '../types/flows'; export declare const arrayFlow: <T extends any[], M extends Methods<any[]>>(value: T, customMethods?: M) => Flow<T> & M & ArrayFlowMethods; export default arrayFlow;