Type Alias EvaluateParemtersResultArgs_v2_TupleOnly<T, NK>

EvaluateParemtersResultArgs_v2_TupleOnly: {
    [Index in keyof NK]: EvaluateParamtersParamterTypeMapper<NK[Index]>
}

The evaluated parameters from the evaluateParameters function.

This is similar to EvaluateParemtersResultArgs_basic but separates the paramter types that have a key property, and maps then to use that key as their property key in the resulting args object, and removing them from the tuple, including shifting the following non-keyed arguments' indices so that the keyed argument does leave a gap in their indices.

This only returns the tuple part of the evaluated parameters, not the keyed properties.

Type Parameters