(tableId)
| 1836 | const getTables = () => mapToObj3(tablesMap, decodeIfJson); |
| 1837 | const getTableIds = () => mapKeys(tablesMap); |
| 1838 | const getTable = (tableId) => mapToObj2(mapGet(tablesMap, id(tableId)), decodeIfJson); |
| 1839 | const getTableCellIds = (tableId) => mapKeys(mapGet(tableCellIds, id(tableId))); |
| 1840 | const getRowCount = (tableId) => collSize(mapGet(tablesMap, id(tableId))); |
| 1841 | const getRowIds = (tableId) => mapKeys(mapGet(tablesMap, id(tableId))); |