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

    Defines a generalized way of reporting progress updates.

    interface Progress<T> {
        report(value: T): void;
    }

    Type Parameters

    • T
    Index

    Methods

    Methods

    • Report a progress update.

      Parameters

      • value: T

        A progress item, like a message and/or an report on how much work finished

      Returns void