Type alias MultiProperty<Value, Params>
Multi
Property
<Value, Params>: { group
?: string; parameters
?: Params; value
: Value }[] | { commonParameters
?: Params; group
?: string; values
: Property<Value, Params>[] } | (Value extends RecordedPropertyValue ? Value[] : never)
Type Parameters
Multiple properties in form of an array of properties or an object in the form
{ commonParameters?: {@link Params}; values: {@link Property}[]; }
.Example