(queryId: Id, paramValues: ParamValues)
| 847 | }; |
| 848 | |
| 849 | const setParamValues = (queryId: Id, paramValues: ParamValues): Queries => { |
| 850 | if (hasQuery(queryId)) { |
| 851 | setOrDelParamValues(queryId, paramValues); |
| 852 | } |
| 853 | return queries; |
| 854 | }; |
| 855 | |
| 856 | const setParamValue = ( |
| 857 | queryId: Id, |