(blockId: string)
| 265 | } |
| 266 | |
| 267 | function getSingleBlockAtomCache(blockId: string): Map<string, Atom<any>> { |
| 268 | const blockORef = WOS.makeORef("block", blockId); |
| 269 | return getSingleOrefAtomCache(blockORef); |
| 270 | } |
| 271 | |
| 272 | function getSingleConnAtomCache(connName: string): Map<string, Atom<any>> { |
| 273 | // this is not a real "oref", but it will work for the cache. |
no test coverage detected