( container: HTMLElement, options: NumberSettingOptions )
| 316 | * Helper for creating standard number input settings |
| 317 | */ |
| 318 | export function createNumberSetting( |
| 319 | container: HTMLElement, |
| 320 | options: NumberSettingOptions |
| 321 | ): Setting { |
| 322 | return configureNumberSetting(new Setting(container), options); |
| 323 | } |
| 324 | |
| 325 | /** |
| 326 | * Helper for configuring a button setting (works with SettingGroup.addSetting) |
nothing calls this directly
no test coverage detected