File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
framework/core/js/src/admin/components Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,14 +84,14 @@ const ColorPreviewSettingType = 'color-preview' as const;
84
84
* Valid options for the setting component builder to generate a Switch.
85
85
*/
86
86
export interface SwitchSettingComponentOptions extends CommonSettingsItemOptions {
87
- type : typeof BooleanSettingTypes [ number ] ;
87
+ type : ( typeof BooleanSettingTypes ) [ number ] ;
88
88
}
89
89
90
90
/**
91
91
* Valid options for the setting component builder to generate a Select dropdown.
92
92
*/
93
93
export interface SelectSettingComponentOptions extends CommonSettingsItemOptions {
94
- type : typeof SelectSettingTypes [ number ] ;
94
+ type : ( typeof SelectSettingTypes ) [ number ] ;
95
95
/**
96
96
* Map of values to their labels
97
97
*/
@@ -103,7 +103,7 @@ export interface SelectSettingComponentOptions extends CommonSettingsItemOptions
103
103
* Valid options for the setting component builder to generate a Textarea.
104
104
*/
105
105
export interface TextareaSettingComponentOptions extends CommonSettingsItemOptions {
106
- type : typeof TextareaSettingTypes [ number ] ;
106
+ type : ( typeof TextareaSettingTypes ) [ number ] ;
107
107
}
108
108
109
109
/**
You can’t perform that action at this time.
0 commit comments