UNPKG

rambda

Version:

Lightweight faster alternative to Ramda

8 lines (6 loc) 161 B
/** Describes function modes * * `sync`: Normal function * * `async`: Promise result */ export type Mode = 'sync' | 'async' export type _Function = Function