| 4 | export type FormKitRuntime = 'react' | 'vue' |
| 5 | |
| 6 | export interface FormKitDocsRoute { |
| 7 | pageOrder: number |
| 8 | pageSlug: string |
| 9 | route: string |
| 10 | sectionOrder: number |
| 11 | sectionSlug: string |
| 12 | sectionTitle: string |
| 13 | title: string |
| 14 | } |
| 15 | |
| 16 | const SECTION_TITLES: Record<string, string> = { |
| 17 | 'api-reference': 'API Reference', |
nothing calls this directly
no outgoing calls
no test coverage detected