mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-15 05:42:46 +01:00
19 lines
607 B
C#
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);
|
|
}
|
|
}
|