mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-07-20 14:04:35 +02:00
7 lines
194 B
C#
7 lines
194 B
C#
namespace TweetLib.Browser.CEF.Interfaces {
|
|
public interface IJsDialogCallbackAdapter<T> {
|
|
void Continue(T callback, bool success, string? userInput = null);
|
|
void Dispose(T callback);
|
|
}
|
|
}
|