(key: string)
| 150 | let dataIndex: number; |
| 151 | |
| 152 | function getVisual(key: string) { |
| 153 | return getItemVisualFromData(data, dataIndex, key) as string | number; |
| 154 | } |
| 155 | |
| 156 | function setVisual(key: string, value: any) { |
| 157 | setItemVisualFromData(data, dataIndex, key, value); |
nothing calls this directly
no test coverage detected