using System.Threading.Tasks;
namespace Flow.Launcher.Plugin;
///
/// Interface for progress box
///
public interface IProgressBoxEx
{
///
/// Show progress box.
///
///
/// Progress value. Should be between 0 and 100. When progress is 100, the progress box will be closed.
///
public void ReportProgress(double progress);
///
/// Close progress box.
///
public Task CloseAsync();
}