ICallable.cs 123 B

123456
  1. namespace Jint.Native;
  2. internal interface ICallable
  3. {
  4. JsValue Call(JsValue thisObject, params JsValue[] arguments);
  5. }