| 206 | // UI |
| 207 | |
| 208 | export interface PreferenceOptions { |
| 209 | itemType: string; |
| 210 | label: string; |
| 211 | propertyName: string; |
| 212 | includedLanguages?: Framework[]; |
| 213 | } |
| 214 | export interface SelectPreferenceOptions extends PreferenceOptions { |
| 215 | itemType: "select"; |
| 216 | propertyName: Exclude<keyof PluginSettings, "framework">; |
nothing calls this directly
no outgoing calls
no test coverage detected