IPrimitiveInstance.cs 171 B

12345678910
  1. using Jint.Runtime;
  2. namespace Jint.Native
  3. {
  4. public interface IPrimitiveInstance
  5. {
  6. Types Type { get; }
  7. JsValue PrimitiveValue { get; }
  8. }
  9. }