1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Browser.CEF/Interfaces/IJsDialogOpener.cs

11 lines
420 B
C#

using System;
using TweetLib.Browser.CEF.Dialogs;
namespace TweetLib.Browser.CEF.Interfaces {
public interface IJsDialogOpener {
void Alert(MessageDialogType type, string title, string message, Action<bool> callback);
void Confirm(MessageDialogType type, string title, string message, Action<bool> callback);
void Prompt(MessageDialogType type, string title, string message, Action<bool, string> callback);
}
}