UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

15 lines (12 loc) 271 B
/** Describes function modes * `sync` : Normal function * `async`: Promised result */ export type Mode = 'sync' | 'async' /** Describes function parameter input * `multi`: ( a, b, c ... n ) => X * `list` : ([a, b, c ... n]) => X */ export type Input = 'multi' | 'list'