| 212 | includedLanguages?: Framework[]; |
| 213 | } |
| 214 | export interface SelectPreferenceOptions extends PreferenceOptions { |
| 215 | itemType: "select"; |
| 216 | propertyName: Exclude<keyof PluginSettings, "framework">; |
| 217 | options: { label: string; value: string; isDefault?: boolean }[]; |
| 218 | } |
| 219 | |
| 220 | export interface LocalCodegenPreferenceOptions extends PreferenceOptions { |
| 221 | itemType: "individual_select"; |
nothing calls this directly
no outgoing calls
no test coverage detected