1
0
mirror of https://github.com/flarum/core.git synced 2025-08-05 07:57:46 +02:00

Bundled output for commit 9310ce13d8

Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
This commit is contained in:
flarum-bot
2023-11-23 17:19:53 +00:00
parent 9310ce13d8
commit e4abf93763

View File

@@ -48,13 +48,13 @@ declare const ImageUploadSettingType: "image-upload";
* Valid options for the setting component builder to generate a Switch.
*/
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.
*/
export interface SelectSettingComponentOptions extends CommonSettingsItemOptions {
type: (typeof SelectSettingTypes)[number];
type: typeof SelectSettingTypes[number];
/**
* Map of values to their labels
*/
@@ -67,7 +67,7 @@ export interface SelectSettingComponentOptions extends CommonSettingsItemOptions
* Valid options for the setting component builder to generate a Textarea.
*/
export interface TextareaSettingComponentOptions extends CommonSettingsItemOptions {
type: (typeof TextareaSettingTypes)[number];
type: typeof TextareaSettingTypes[number];
}
/**
* Valid options for the setting component builder to generate a ColorPreviewInput.