Add MapAsync type definition

This commit is contained in:
Daniel Gasienica
2018-04-25 15:24:51 -04:00
parent 648a7ab1bb
commit e5d90775d0
+4
View File
@@ -0,0 +1,4 @@
/**
* @prettier
*/
export type MapAsync<T> = (value: T) => Promise<T>;