IJsPrimitive.cs 139 B

123456789
  1. using Jint.Runtime;
  2. namespace Jint.Native;
  3. public interface IJsPrimitive
  4. {
  5. Types Type { get; }
  6. JsValue PrimitiveValue { get; }
  7. }