| 59 | } |
| 60 | |
| 61 | interface CompatReport { |
| 62 | comparedAt: string; |
| 63 | corpus: { |
| 64 | caseCount: number; |
| 65 | description?: string; |
| 66 | name: string; |
| 67 | }; |
| 68 | origins: { |
| 69 | esmSh: string; |
| 70 | esmUnpkg: string; |
| 71 | }; |
| 72 | results: CompatResult[]; |
| 73 | summary: CompatSummary; |
| 74 | } |
| 75 | |
| 76 | interface CompatSummary { |
| 77 | byCategory: Record<string, { failed: number; passed: number; total: number }>; |
nothing calls this directly
no outgoing calls
no test coverage detected