/** Describes function modes
 * * `sync`: Normal function
 * * `async`: Promise result
 */
export type Mode = 'sync' | 'async'

export type _Function = Function
