| 120 | type CellAddress = { row: number; col: number } |
| 121 | |
| 122 | class TableWidget extends WidgetType { |
| 123 | /** Working copy edited in place by the cells; committed on focus-out. */ |
| 124 | private model: MarkdownTable |
| 125 | private dom: HTMLElement | null = null |
nothing calls this directly
no outgoing calls
no test coverage detected