ICallable.cs 129 B

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