| 3 | */ |
| 4 | |
| 5 | export interface ThemeConfig { |
| 6 | readonly backgroundColor: string; |
| 7 | readonly textColor: string; |
| 8 | readonly axisLineColor: string; |
| 9 | readonly axisTickColor: string; |
| 10 | readonly gridLineColor: string; |
| 11 | readonly colorPalette: string[]; |
| 12 | readonly fontFamily: string; |
| 13 | readonly fontSize: number; |
| 14 | } |
| 15 |
nothing calls this directly
no outgoing calls
no test coverage detected