# 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:482](https://github.com/coda/packs-sdk/blob/853bf0fabbc842fea7362510b545440b16a96b05/api_types.ts#L482)

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/) |
