Skip to content

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

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