(id: Id)
| 78 | const getTableId = (id: Id): Id => mapGet(tableIds, id) as Id; |
| 79 | |
| 80 | const getThing = (id: Id): Thing | undefined => mapGet(things, id); |
| 81 | |
| 82 | const setThing = (id: Id, thing: Thing | undefined): IdMap<Thing> => |
| 83 | mapSet(things, id, thing) as IdMap<Thing>; |
no test coverage detected
searching dependent graphs…