Function showProgress

  • Shows the progress status in a bubble.

    Parameters

    • context: Context
    • title: string
    • Optional options: {
          description?: string;
          overlay?: boolean;
      }

      Show progress options.

      • Optional description?: string
      • Optional overlay?: boolean

    Returns Promise<void>

    Example

    import {showProgress} from '@matterway/sdk-progress';

    await showProgress(
    ctx,
    'Title Item',
    {
    description: 'Description of the Item',
    overlay: true,
    },
    );

Generated using TypeDoc