Represents an object with methods to show and hide the Spotfire progress indicator.

interface Progress {
    hide(): void;
    show(): void;
}

Methods

Methods

  • Hides the progress indicator.

    Returns void

  • Shows the progress indicator.

    Returns void