(tableId: Id)
| 1471 | const getTableIds = (): Ids => mapKeys(tablesMap); |
| 1472 | |
| 1473 | const getTable = (tableId: Id): Table => |
| 1474 | mapToObj2(mapGet(tablesMap, id(tableId)), decodeIfJson); |
| 1475 | |
| 1476 | const getTableCellIds = (tableId: Id): Ids => |
| 1477 | mapKeys(mapGet(tableCellIds, id(tableId))); |