type GlobalMapConstrainedDefaultSetting = GlobalTypedConstrainedDefaultSetting[map[string]any]
func NewGlobalMapSetting(key string, def map[string]any, description string) GlobalMapSetting {
setting_gen.go
return NewGlobalTypedSettingWithConverter[map[string]any](key, convertMap, def, description)
}
func NewGlobalMapSettingWithConstrainedDefault(key string, cdef []TypedConstrainedValue[map[string]any], description string) GlobalMapConstrainedDefaultSetting {