| 30 | } |
| 31 | |
| 32 | export interface Framework { |
| 33 | name: string; |
| 34 | dir: string; |
| 35 | type: FrameworkType; |
| 36 | issues: number[]; |
| 37 | language: string; |
| 38 | frameworkHomeURL: string; |
| 39 | displayname: string; |
| 40 | } |
| 41 | |
| 42 | const DEFAULT_RESULTS_KEY = "DEFAULT"; |
| 43 |
nothing calls this directly
no outgoing calls
no test coverage detected