( container: HTMLElement, options: ButtonSettingOptions )
| 348 | * Helper for creating standard button settings |
| 349 | */ |
| 350 | export function createButtonSetting( |
| 351 | container: HTMLElement, |
| 352 | options: ButtonSettingOptions |
| 353 | ): Setting { |
| 354 | return configureButtonSetting(new Setting(container), options); |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * Helper for creating section headers |
nothing calls this directly
no test coverage detected