| 344 | } |
| 345 | |
| 346 | interface CustomConfig extends Config { |
| 347 | x: string |
| 348 | y: string, |
| 349 | values: string, |
| 350 | labels: string, |
| 351 | rowPositions: number[], |
| 352 | columnPositions: number[], |
| 353 | grid: { rows: number, columns: number }, |
| 354 | tableHeaderStyle: any, |
| 355 | tableCellStyle: any, |
| 356 | columns: string[]; |
| 357 | } |
| 358 | |
| 359 | export type PlotConfigObject = { |
| 360 | config?: Partial<CustomConfig> |
nothing calls this directly
no outgoing calls
no test coverage detected