| 37 | } |
| 38 | |
| 39 | interface Row { |
| 40 | id: string; |
| 41 | name: string; |
| 42 | scope: string; |
| 43 | categories: string[]; |
| 44 | aliases: string[]; |
| 45 | rules: number; |
| 46 | sources: SourceEntry[]; |
| 47 | } |
| 48 | |
| 49 | async function run(options: StatusOptions): Promise<void> { |
nothing calls this directly
no outgoing calls
no test coverage detected