UNPKG

ts-std-lib

Version:
5 lines (4 loc) 125 B
/** * A function that returns a promise */ export type AsyncFunction<T> = (...args: ReadonlyArray<any>) => Promise<T>;