mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
16 lines
390 B
C#
16 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);
|
|||
|
|
}
|
|||
|
|
}
|