(tableId: Id)
| 1817 | ); |
| 1818 | |
| 1819 | const delTable = (tableId: Id): Store => |
| 1820 | fluentTransaction( |
| 1821 | (tableId) => (collHas(tablesMap, tableId) ? delValidTable(tableId) : 0), |
| 1822 | tableId, |
| 1823 | ); |
| 1824 | |
| 1825 | const delRow = (tableId: Id, rowId: Id): Store => |
| 1826 | fluentTransaction( |
no test coverage detected
searching dependent graphs…