(t: TableNodeType)
| 39 | } |
| 40 | |
| 41 | export function isTableType(t: TableNodeType) { |
| 42 | return t.endsWith("Table"); |
| 43 | } |
| 44 | |
| 45 | export function newTableGrid(): TableGrid { |
| 46 | return { grid: [], posMap: new Map(), width: 0, height: 0 }; |
no outgoing calls
no test coverage detected