1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-08-25 23:35:16 +02:00
Files
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);
}
}