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

    Event fired before providing debug configurations. When debugType is specified, only extensions providing that type should be activated. When debugType is undefined, all configuration providers should be activated.

    interface WillProvideDebugConfiguration {
        debugType?: string;
        token: CancellationToken;
        waitUntil(thenable: Promise<any>): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    debugType?: string

    The debug type to provide configurations for. If undefined, configurations for all types should be provided.

    A cancellation token.

    Methods

    • Allows to pause the event loop until the provided thenable resolved.

      Note: It can only be called during event dispatch and not in an asynchronous manner

      Parameters

      • thenable: Promise<any>

        A thenable that delays execution.

      Returns void