type Data = {
    buttonData?: TJSGameSettingsWithUI.UISetting.ButtonData;
    componentType: string;
    filePicker?: string;
    folder?: string;
    hint: string;
    id: string;
    initialValue: any;
    inputData?: InputData;
    key: string;
    name: string;
    namespace: string;
    range?: { max: number; min: number; step: number };
    requiresReload?: boolean;
    scope: "client" | "user" | "world";
    selectData?: SelectData;
    store: MinimalWritable<unknown>;
    type: string;
}
Index

Properties

componentType: string
filePicker?: string
folder?: string
hint: string
id: string
initialValue: any
inputData?: InputData
key: string
name: string
namespace: string
range?: { max: number; min: number; step: number }
requiresReload?: boolean
scope: "client" | "user" | "world"
selectData?: SelectData
store: MinimalWritable<unknown>
type: string