mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-14 20:34:08 +02:00
8 lines
230 B
C#
8 lines
230 B
C#
namespace TweetLib.Core.Browser {
|
|
public interface IScriptExecutor {
|
|
void RunFunction(string name, params object[] args);
|
|
void RunScript(string identifier, string script);
|
|
void RunBootstrap(string moduleNamespace);
|
|
}
|
|
}
|