(component: unknown)
| 41 | export const isSeriesComponent = (component: unknown): boolean => |
| 42 | isFunction(component) && (component as SeriesComponent)[SERIES] === true; |
| 43 | export const isXAxisComponent = (component: unknown): boolean => |
| 44 | isFunction(component) && (component as XAxisComponent)[X_AXIS] === true; |
| 45 | export const isYAxisComponent = (component: unknown): boolean => |
| 46 | isFunction(component) && (component as YAxisComponent)[Y_AXIS] === true; |
| 47 |
no test coverage detected
searching dependent graphs…