(getCell: GetCell, localRowId: Id)
| 25 | store.delCell('t1', 'r2', 'c2').delRow('t1', 'r1').delTables(); |
| 26 | |
| 27 | const customLink = (getCell: GetCell, localRowId: Id): Id => |
| 28 | 'R' + |
| 29 | Math.abs( |
| 30 | parseInt((getCell('c1') ?? '_').toString()[1]) - parseInt(localRowId[1]), |
| 31 | ); |
| 32 | |
| 33 | beforeEach(() => { |
| 34 | store = createStore(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…