Type Alias InputStructShape<T, A>

InputStructShape<T, A>: Expand<{
    [K in keyof A]: Input<A[K]>
}>

Type Parameters