(container: HTMLElement)
| 51 | }); |
| 52 | |
| 53 | const getBarWidths = (container: HTMLElement): number[] => |
| 54 | Array.from(container.querySelectorAll('.plot .bar'), (bar) => |
| 55 | Number(bar.getAttribute('width')), |
| 56 | ); |
| 57 | |
| 58 | const getTimeAxisLabels = ( |
| 59 | min: string, |
no outgoing calls
no test coverage detected
searching dependent graphs…