Flow.Launcher/Flow.Launcher.Plugin/Interfaces/IAsyncExternalPreview.cs
2024-05-28 21:27:48 +10:00

15 lines
390 B
C#

using System.Threading.Tasks;
namespace Flow.Launcher.Plugin
{
public interface IAsyncExternalPreview: IFeatures
{
public Task TogglePreviewAsync(string path);
public Task OpenPreviewAsync(string path, bool sendFailToast = true);
public Task ClosePreviewAsync();
public Task SwitchPreviewAsync(string path, bool sendFailToast = true);
}
}