Type alias PromiseAll<P>

PromiseAll<P>: {
    -readonly [K in keyof P]: Promise<P[K]>
}

Type Parameters

  • P extends readonly unknown[] | []