(N: number)
| 98 | }; |
| 99 | |
| 100 | export const getNTables = (N: number): Tables => { |
| 101 | const tables: Tables = {}; |
| 102 | for (let n = 1; n <= N; n++) { |
| 103 | tables['table' + n] = {row: {cell: n}}; |
| 104 | } |
| 105 | return tables; |
| 106 | }; |
| 107 | |
| 108 | export const getNRows = (N: number): Table => { |
| 109 | const table: Table = {}; |
no outgoing calls
no test coverage detected
searching dependent graphs…