| 3 | */ |
| 4 | |
| 5 | export interface SectionData { |
| 6 | sectionId: string |
| 7 | spec: string | null |
| 8 | specParsed: ParsedSpec | null |
| 9 | data: Record<string, unknown> | null |
| 10 | screenDesigns: ScreenDesignInfo[] |
| 11 | screenshots: ScreenshotInfo[] |
| 12 | } |
| 13 | |
| 14 | export interface ParsedSpec { |
| 15 | title: string |
nothing calls this directly
no outgoing calls
no test coverage detected