Configuration for asciichart plot function.
| 10 | |
| 11 | /** Configuration for asciichart plot function. */ |
| 12 | interface PlotConfig { |
| 13 | height?: number; |
| 14 | format?: (x: number) => string; |
| 15 | } |
| 16 | |
| 17 | /** Type for the asciichart plot function. */ |
| 18 | type PlotFn = (series: number[], config?: PlotConfig) => string; |
nothing calls this directly
no outgoing calls
no test coverage detected