(tableId)
| 2331 | const getTables = () => mapToObj3(tablesMap, decodeIfJson); |
| 2332 | const getTableIds = () => mapKeys(tablesMap); |
| 2333 | const getTable = (tableId) => mapToObj2(mapGet(tablesMap, id(tableId)), decodeIfJson); |
| 2334 | const getTableCellIds = (tableId) => mapKeys(mapGet(tableCellIds, id(tableId))); |
| 2335 | const getRowCount = (tableId) => collSize(mapGet(tablesMap, id(tableId))); |
| 2336 | const getRowIds = (tableId) => mapKeys(mapGet(tablesMap, id(tableId))); |