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