Promisify a function type
type Fn = (a: string, b: number) => boolean;type PromisifiedFn = Promisify<Fn>; // (a: string, b: number) => Promise<boolean> Copy
type Fn = (a: string, b: number) => boolean;type PromisifiedFn = Promisify<Fn>; // (a: string, b: number) => Promise<boolean>
Promisify a function type