Add MapAsync type definition

This commit is contained in:
Daniel Gasienica 2018-04-15 03:05:16 -04:00
parent 648a7ab1bb
commit e5d90775d0

4
ts/types/MapAsync.ts Normal file
View file

@ -0,0 +1,4 @@
/**
* @prettier
*/
export type MapAsync<T> = (value: T) => Promise<T>;