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

    Arguments carried by the gear menu's commands. A preference-backed row supplies id/value/scope (Reset writes undefined to that scope; Copy uses id/value). A row backed by non-preference data (e.g. per-agent settings) instead supplies a reset callback, so it gets the same gear/Reset affordance without a preference id.

    interface AiConfigurationSettingCommandArgs {
        id?: string;
        reset?: () => void;
        resourceUri?: string;
        scope?: PreferenceScope;
        value?: unknown;
    }
    Index

    Properties

    id?: string
    reset?: () => void
    resourceUri?: string
    value?: unknown