mirror of
https://github.com/flarum/core.git
synced 2025-08-04 23:47:32 +02:00
chore: yarn format
This commit is contained in:
@@ -88,14 +88,14 @@ const ImageUploadSettingType = 'image-upload' as const;
|
|||||||
* Valid options for the setting component builder to generate a Switch.
|
* Valid options for the setting component builder to generate a Switch.
|
||||||
*/
|
*/
|
||||||
export interface SwitchSettingComponentOptions extends CommonSettingsItemOptions {
|
export interface SwitchSettingComponentOptions extends CommonSettingsItemOptions {
|
||||||
type: (typeof BooleanSettingTypes)[number];
|
type: typeof BooleanSettingTypes[number];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Valid options for the setting component builder to generate a Select dropdown.
|
* Valid options for the setting component builder to generate a Select dropdown.
|
||||||
*/
|
*/
|
||||||
export interface SelectSettingComponentOptions extends CommonSettingsItemOptions {
|
export interface SelectSettingComponentOptions extends CommonSettingsItemOptions {
|
||||||
type: (typeof SelectSettingTypes)[number];
|
type: typeof SelectSettingTypes[number];
|
||||||
/**
|
/**
|
||||||
* Map of values to their labels
|
* Map of values to their labels
|
||||||
*/
|
*/
|
||||||
@@ -107,7 +107,7 @@ export interface SelectSettingComponentOptions extends CommonSettingsItemOptions
|
|||||||
* Valid options for the setting component builder to generate a Textarea.
|
* Valid options for the setting component builder to generate a Textarea.
|
||||||
*/
|
*/
|
||||||
export interface TextareaSettingComponentOptions extends CommonSettingsItemOptions {
|
export interface TextareaSettingComponentOptions extends CommonSettingsItemOptions {
|
||||||
type: (typeof TextareaSettingTypes)[number];
|
type: typeof TextareaSettingTypes[number];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user