Saxonberg Server API
    Preparing search index...

    Variable SettingTypesConst

    SettingTypes: {
        Boolean: "boolean";
        Enum: "enum";
        List: "list";
        Number: "number";
        String: "string";
        Struct: "struct";
    } = ...

    Supported value types for a schema entry. struct / list are accepted by the type system today; the user-facing set command rejects them until structured-value syntax exists.

    SettingTypes is the constants table; declare schema entries with type: SettingTypes.String rather than the bare literal. Mirrors the PropOperations pattern in lib/stuff/Propertied.ts.

    Type Declaration

    • ReadonlyBoolean: "boolean"
    • ReadonlyEnum: "enum"
    • ReadonlyList: "list"
    • ReadonlyNumber: "number"
    • ReadonlyString: "string"
    • ReadonlyStruct: "struct"