(queryId: Id, paramId: Id)
| 868 | paramStore.getRow(PARAMS_TABLE, queryId) as ParamValues; |
| 869 | |
| 870 | const getParamValue = (queryId: Id, paramId: Id): ParamValue | undefined => |
| 871 | paramStore.getCell(PARAMS_TABLE, queryId, paramId) as |
| 872 | ParamValue | undefined; |
| 873 | |
| 874 | const addQueryIdsListener = (listener: QueryIdsListener) => |
| 875 | addQueryIdsListenerImpl(() => listener(queries)); |
nothing calls this directly
no test coverage detected
searching dependent graphs…