UNPKG

subflow

Version:

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

5 lines (4 loc) 284 B
import { Flow, Methods } from '../types/core'; import { NumberFlowMethods } from '../types/flows'; export declare const numberMethods: NumberFlowMethods; export declare const numberFlow: <M extends Methods<number>>(value: number, methods?: M) => Flow<number> & M & NumberFlowMethods;