1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-07-23 05:04:36 +02:00
TweetDuck/lib/TweetLib.Core/Browser/IScriptExecutor.cs

8 lines
214 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);
}
}