(axis: VegaDeckGl.types.Axis, i: number)
| 15 | } |
| 16 | |
| 17 | function tickValue(axis: VegaDeckGl.types.Axis, i: number) { |
| 18 | const tick = axis.tickText[i]; |
| 19 | let value: SearchExpressionValue; |
| 20 | if (tick) { |
| 21 | value = axis.tickText[i].value; |
| 22 | } |
| 23 | return { tick, value }; |
| 24 | } |
| 25 | |
| 26 | export function selectNullOrEmpty(column: Column) { |
| 27 | const searchExpression: SearchExpression = { |
no outgoing calls
no test coverage detected