Creates a promisified version of a Function F
Function
F
to promisify
async F
import {F} from 'ts-toolbelt' type test0 = F.Promisify<(a: number) => number> // (a: number) => Promise<number>
Creates a promisified version of a
Function
F