(container: HTMLElement, options: TextSettingOptions)
| 222 | * Helper for creating standard text input settings |
| 223 | */ |
| 224 | export function createTextSetting(container: HTMLElement, options: TextSettingOptions): Setting { |
| 225 | return configureTextSetting(new Setting(container), options); |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * Helper for configuring a dropdown setting (works with SettingGroup.addSetting) |
nothing calls this directly
no test coverage detected