/**
Describes function modes
* `sync` : Normal function
* `async`: Promised result
*/
exporttype Mode = 'sync' | 'async'
/**
Describes function parameter input
* `multi`: ( a, b, c ... n ) => X
* `list` : ([a, b, c ... n]) => X
*/
exporttype Input = 'multi' | 'list'