(tableId: Id, rowId: Id)
| 1522 | mapToObj(mapGet(mapGet(tablesMap, id(tableId)), id(rowId)), decodeIfJson); |
| 1523 | |
| 1524 | const getCellIds = (tableId: Id, rowId: Id): Ids => |
| 1525 | mapKeys(mapGet(mapGet(tablesMap, id(tableId)), id(rowId))); |
| 1526 | |
| 1527 | const getCell = (tableId: Id, rowId: Id, cellId: Id): CellOrUndefined => |
| 1528 | decodeIfJson( |