Barrel export file for the dev-sections registry, re-exporting core constants and types from `./openframe-dev-sections` while intentionally omitting the legacy `RELEASE_STATUS_OPTIONS` alias. ## Key Components | Export | Kind | Description | |--------|------|-------------| | `OPENFRAME_DEV_SECTIONS` | `const` | Registry of all OpenFrame developer sections | | `ROADMAP_STATUS_OPTIONS` | `const` | Status options for roadmap items | | `DELIVERY_TASK_TYPE_OPTIONS` | `const` | Task type options for delivery tracking | | `TICKET_STATUS_OPTIONS` | `const` | Status options for support tickets | | `OpenframeDevSection` | `type` | Type definition for a single dev section entry | | `OpenframeDevSectionKey` | `type` | Union type of valid dev section keys | ## Usage Example ```typescript import { OPENFRAME_DEV_SECTIONS, ROADMAP_STATUS_OPTIONS, TICKET_STATUS_OPTIONS, type OpenframeDevSection, type OpenframeDevSectionKey, } from '@flamingo-stack/openframe-frontend-core/dev-sections' // Look up a section by key const key: OpenframeDevSectionKey = 'roadmap' const section: OpenframeDevSection = OPENFRAME_DEV_SECTIONS[key] // Render status options in a select const options = TICKET_STATUS_OPTIONS.map(opt => opt.label) ``` > **Note:** `RELEASE_STATUS_OPTIONS` is **not** exported here. If you need release-status options, import `releaseStatusOptions` directly from `@flamingo-stack/openframe-frontend-core/types` to avoid alias drift.