| 1 | export interface IProgressItem { |
| 2 | color: string; |
| 3 | content?: string; |
| 4 | percentage: number; |
| 5 | percentageText?: string; |
| 6 | strokePath?: { [key: string]: string }; |
| 7 | [key: string]: any; |
| 8 | } |
| 9 | |
| 10 | export interface IGradientColor { |
| 11 | color: string; |
nothing calls this directly
no outgoing calls
no test coverage detected