( columnDefinition: SheetColumnDefinition )
| 219 | } |
| 220 | |
| 221 | export function allowUserToMapColumn( |
| 222 | columnDefinition: SheetColumnDefinition |
| 223 | ): boolean { |
| 224 | return ( |
| 225 | columnDefinition.type !== 'reference' && |
| 226 | columnDefinition.type !== 'calculated' |
| 227 | ); |
| 228 | } |
no outgoing calls
no test coverage detected