(deckProps: Partial<DeckProps>)
| 215 | } |
| 216 | |
| 217 | export function getCubes(deckProps: Partial<DeckProps>) { |
| 218 | const cubeLayer = getCubeLayer(deckProps); |
| 219 | if (!cubeLayer) return; |
| 220 | const cubeLayerProps = cubeLayer.props as CubeLayerProps; |
| 221 | return cubeLayerProps.data as Cube[]; |
| 222 | } |
no test coverage detected