(id: Id)
| 189 | }; |
| 190 | |
| 191 | const delDefinition = (id: Id): void => { |
| 192 | mapSet(tableIds, id); |
| 193 | mapSet(things, id); |
| 194 | mapSet(allRowValues, id); |
| 195 | mapSet(allSortKeys, id); |
| 196 | delStoreListeners(id); |
| 197 | callListeners(thingIdListeners); |
| 198 | }; |
| 199 | |
| 200 | const addThingIdsListener = (listener: () => void) => |
| 201 | addListener(listener, thingIdListeners); |
no test coverage detected
searching dependent graphs…