* Configuration for form fields
| 10 | * Configuration for form fields |
| 11 | */ |
| 12 | interface FieldConfig { |
| 13 | id?: string; |
| 14 | type: "text" | "email" | "select" | "multiselect" | "number"; |
| 15 | label: string; |
| 16 | identifier?: string; |
| 17 | required?: boolean; |
| 18 | options?: { id: string; label: string }[]; |
| 19 | selectText?: string; |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Configuration for form routes |
nothing calls this directly
no outgoing calls
no test coverage detected