| 6 | import { LOCKED_COL_ATTR } from 'ephox/snooker/util/LockedColumnUtils'; |
| 7 | |
| 8 | interface TestDataCell { |
| 9 | readonly type: 'cell'; |
| 10 | readonly selected: boolean; |
| 11 | readonly html: string; |
| 12 | readonly rowspan?: string; |
| 13 | readonly colspan?: string; |
| 14 | readonly locked?: boolean; |
| 15 | } |
| 16 | |
| 17 | interface TestDataCol { |
| 18 | readonly type: 'col'; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…