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