mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
11 lines
420 B
C#
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);
|
|
}
|
|
}
|