Type alias AwaitedProp<T, K>

AwaitedProp<T, K>: {
    [k in keyof T]: k extends K
        ? Awaited<T[k]>
        : T[k]
}

Await on specific props V on type T

Type Parameters

Generated using TypeDoc