(partialValues: Values)
| 1691 | ); |
| 1692 | |
| 1693 | const setPartialValues = (partialValues: Values): Store => |
| 1694 | fluentTransaction(() => |
| 1695 | validateValues(partialValues, 1) |
| 1696 | ? objMap(partialValues, (value, valueId) => |
| 1697 | setValidValue(valueId, value as Value), |
| 1698 | ) |
| 1699 | : 0, |
| 1700 | ); |
| 1701 | |
| 1702 | const setValue = ( |
| 1703 | valueId: Id, |
nothing calls this directly
no test coverage detected
searching dependent graphs…