Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace RobotNet10.ScriptEngine.Shared;
|
||||
|
||||
public interface IScriptEngineResource
|
||||
{
|
||||
Type AppGlobalType { get; }
|
||||
IDictionary<string, object?> GetTaskGlobals();
|
||||
IDictionary<string, object?> GetMissionGlobals(Guid id, CancellationToken cancellationToken);
|
||||
ImmutableArray<string> UsingNamespaces { get; }
|
||||
ImmutableArray<string> Modules { get; }
|
||||
ImmutableArray<string> DocModules { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user