(queryId: Id, paramValues: ParamValues)
| 280 | ); |
| 281 | |
| 282 | const setOrDelParamValues = (queryId: Id, paramValues: ParamValues) => |
| 283 | (objIsEmpty(paramValues) ? paramStore.delRow : paramStore.setRow)( |
| 284 | PARAMS_TABLE, |
| 285 | queryId, |
| 286 | {...paramValues}, |
| 287 | ); |
| 288 | |
| 289 | const addRoutedResultListener = ( |
| 290 | stat: ResultListenerStat, |
no test coverage detected
searching dependent graphs…