(tableId: Id, table: Table)
| 1580 | ); |
| 1581 | |
| 1582 | const setTable = (tableId: Id, table: Table): Store => |
| 1583 | fluentTransaction( |
| 1584 | (tableId) => |
| 1585 | validateTable(table, tableId) ? setValidTable(tableId, table) : 0, |
| 1586 | tableId, |
| 1587 | ); |
| 1588 | |
| 1589 | const setRow = (tableId: Id, rowId: Id, row: Row): Store => |
| 1590 | fluentTransaction( |
searching dependent graphs…