Theia API Documentation v1.75.0
    Preparing search index...

    The value of a single preference as seen from a particular AiConfigurationScope, together with the information the AiSettingsRow needs to render the modified indicator and the reset affordance.

    interface AiSettingsInspection {
        defaultValue: unknown;
        modified: boolean;
        scopeValue: unknown;
        value: unknown;
    }
    Index

    Properties

    defaultValue: unknown

    Default (schema) value.

    modified: boolean

    true when the requested scope explicitly overrides the value, i.e. a reset is meaningful.

    scopeValue: unknown

    Value explicitly set in the requested scope; undefined means the value is inherited or default.

    value: unknown

    Effective value resolved for the requested scope (falling back through broader scopes and the default).