mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-06-02 05:34:10 +02:00
7 lines
191 B
C#
7 lines
191 B
C#
namespace TweetLib.Browser.Interfaces {
|
|
public interface IScriptExecutor {
|
|
void RunFunction(string name, params object[] args);
|
|
void RunScript(string identifier, string script);
|
|
}
|
|
}
|