ICallable.cs 134 B

1234567
  1. namespace Jint.Native
  2. {
  3. public interface ICallable
  4. {
  5. JsValue Call(JsValue thisObject, JsValue[] arguments);
  6. }
  7. }