| 3 | export type Framework = 'core' | 'react' | 'angular' | 'vue'; |
| 4 | |
| 5 | export interface VersionEntry { |
| 6 | version: string; |
| 7 | releaseDate: string | null; |
| 8 | category: ChangeCategory; |
| 9 | breaking: boolean; |
| 10 | framework: Framework; |
| 11 | prNumber: number | null; |
| 12 | prKind: 'issues' | 'pull' | null; |
| 13 | title: string; |
| 14 | highlighted: boolean; |
| 15 | tagline?: string; |
| 16 | whyItMatters?: string; |
| 17 | codeBefore?: string; |
| 18 | codeAfter?: string; |
| 19 | migrationAnchor?: string; |
| 20 | } |
| 21 | |
| 22 | export interface ReleaseSummary { |
| 23 | version: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…