mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 01:58:29 +00:00
11 lines
330 B
C#
11 lines
330 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.AspNet.NodeServices {
|
|
public interface INodeServices : IDisposable {
|
|
Task<string> Invoke(string moduleName, params object[] args);
|
|
|
|
Task<string> InvokeExport(string moduleName, string exportedFunctionName, params object[] args);
|
|
}
|
|
}
|