IConstructor.cs 176 B

123456789
  1. using Jint.Native.Object;
  2. namespace Jint.Native
  3. {
  4. public interface IConstructor
  5. {
  6. ObjectInstance Construct(JsValue[] arguments, JsValue newTarget);
  7. }
  8. }