| 79 | export type InputType = "text" | "password" | "checkbox" |
| 80 | |
| 81 | export interface FieldDefinition { |
| 82 | type: string | "list" |
| 83 | inputType?: InputType |
| 84 | description: string |
| 85 | required: boolean |
| 86 | default: any |
| 87 | placeholder?: any |
| 88 | readonly?: boolean |
| 89 | label: string |
| 90 | listCallback?: (deps: Record<string, string>) => Promise<string[]> |
| 91 | listDependencies?: string[] |
| 92 | value?: string |
| 93 | getValue?: () => Promise<string> |
| 94 | } |
| 95 | |
| 96 | export type InterfaceDefinition = Record<string, FieldDefinition> |
| 97 |
nothing calls this directly
no outgoing calls
no test coverage detected