1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Core/Features/ICommonInterface.cs

19 lines
607 B
C#

using System.Threading.Tasks;
using TweetLib.Core.Features.Notifications;
namespace TweetLib.Core.Features {
public interface ICommonInterface {
void Alert(string type, string contents);
void DisplayTooltip(string? text);
void FixClipboard();
int GetIdleSeconds();
void OnSoundNotification();
void PlayVideo(string videoUrl, string tweetUrl, string username, object callShowOverlay);
void ScreenshotTweet(string html, int width);
void ShowDesktopNotification(DesktopNotification notification);
void StopVideo();
Task ExecuteCallback(object callback, params object[] parameters);
}
}