Sha256: 03f4449c691dd9c51e42efd51155b63c8b89a5f56b5cf3015062e2f818be8959
Contents?: true
Size: 742 Bytes
Versions: 33
Compression:
Stored size: 742 Bytes
Contents
import type {PromiseValue} from './promise-value'; type AsyncFunction = (...args: any[]) => Promise<unknown>; /** Unwrap the return type of a function that returns a `Promise`. There has been [discussion](https://github.com/microsoft/TypeScript/pull/35998) about implementing this type in TypeScript. @example ```ts import type {AsyncReturnType} from 'type-fest'; import {asyncFunction} from 'api'; // This type resolves to the unwrapped return type of `asyncFunction`. type Value = AsyncReturnType<typeof asyncFunction>; async function doSomething(value: Value) {} asyncFunction().then(value => doSomething(value)); ``` @category Async */ export type AsyncReturnType<Target extends AsyncFunction> = PromiseValue<ReturnType<Target>>;
Version data entries
33 entries across 33 versions & 1 rubygems