# Type Alias: ParamValues<ParamDefsT>

> **ParamValues**\<`ParamDefsT`> = { \[K in keyof ParamDefsT\]: ParamDefsT[K] extends RequiredParamDef<infer S> ? TypeOfMap<S> : ParamDefsT[K] extends ParamDef<infer S> ? TypeOfMap<S> | undefined : never } & `any`[]

Defined in: [api_types.ts:484](https://github.com/coda/packs-sdk/blob/a659f75951c547b36b9869c61c13591e8fd62220/api_types.ts#L484)

The type for the set of argument values that are passed to formula's `execute` function, based on the parameter definition for that formula.

## Type Parameters

| Type Parameter | | --- | | `ParamDefsT` *extends* [`ParamDefs`](../ParamDefs/) |
