mirror of
				https://github.com/chylex/TweetDuck.git
				synced 2025-11-04 01:40:16 +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);
 | 
						|
	}
 | 
						|
}
 |