public static extern void JsObjectSetPropertyAtIndex([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSObjectRef")] JsValue * @object, [NativeTypeName("unsigned int")] uint propertyIndex, [NativeTypeName("JSValueRef")] JsValue *value, [NativeTypeName("JSValueRef *")] JsValue **exception);
public static extern JsValue *JsValueMakeNull([NativeTypeName("JSContextRef")] JsContext *ctx);
public static extern JsValue *JsValueMakeNumber([NativeTypeName("JSContextRef")] JsContext *ctx, double number);
public static extern JsTypedArrayType JsValueGetTypedArrayType([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSValueRef")] JsValue *value, [NativeTypeName("JSValueRef *")] JsValue **exception);
public static extern OneByteBoolean JsValueIsStrictEqual([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSValueRef")] JsValue *a, [NativeTypeName("JSValueRef")] JsValue *b);
public static extern JsValue *JsObjectMakeArrayBufferWithBytesNoCopy([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("void *")] void *bytes, [NativeTypeName("size_t")] UIntPtr byteLength, [NativeTypeName("JSTypedArrayBytesDeallocator")] IntPtr bytesDeallocator, [NativeTypeName("void *")] void *deallocatorContext, [NativeTypeName("JSValueRef *")] JsValue **exception);
public static extern OneByteBoolean JsValueIsObjectOfClass([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSValueRef")] JsValue *value, [NativeTypeName("JSClassRef")] JsClass *jsClass);
public static extern JsValue *ContextGetGlobalObject([NativeTypeName("JSContextRef")] JsContext *ctx);
public static extern JsContextGroup *ContextGetGroup([NativeTypeName("JSContextRef")] JsContext *ctx);
public static extern JsContext *GlobalContextRetain([NativeTypeName("JSGlobalContextRef")] JsContext *ctx);
public static extern void GlobalContextRelease([NativeTypeName("JSGlobalContextRef")] JsContext *ctx);
public static extern JsPropertyNameArray *JsObjectCopyPropertyNames([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSObjectRef")] JsValue * @object);
public static extern JsValue *JsObjectCallAsConstructor([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSObjectRef")] JsValue * @object, [NativeTypeName("size_t")] UIntPtr argumentCount, [NativeTypeName("const JSValueRef []")] JsValue **arguments, [NativeTypeName("JSValueRef *")] JsValue **exception);
public static extern OneByteBoolean JsObjectIsConstructor([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSObjectRef")] JsValue * @object);
public static extern UIntPtr JsObjectGetTypedArrayByteOffset([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSObjectRef")] JsValue * @object, [NativeTypeName("JSValueRef *")] JsValue **exception);
public static extern JsContext *ContextGetGlobalContext([NativeTypeName("JSContextRef")] JsContext *ctx);
public static extern JsValue *JsObjectGetTypedArrayBuffer([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSObjectRef")] JsValue * @object, [NativeTypeName("JSValueRef *")] JsValue **exception);
public static extern JsString *GlobalContextCopyName([NativeTypeName("JSGlobalContextRef")] JsContext *ctx);
public static extern UIntPtr JsObjectGetArrayBufferByteLength([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSObjectRef")] JsValue * @object, [NativeTypeName("JSValueRef *")] JsValue **exception);
public static extern void GlobalContextSetName([NativeTypeName("JSGlobalContextRef")] JsContext *ctx, [NativeTypeName("JSStringRef")] JsString *name);
public static extern OneByteBoolean JsValueIsDate([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSValueRef")] JsValue *value);
public static extern JsValue *JsObjectMakeTypedArray([NativeTypeName("JSContextRef")] JsContext *ctx, JsTypedArrayType arrayType, [NativeTypeName("size_t")] UIntPtr length, [NativeTypeName("JSValueRef *")] JsValue **exception);
public static extern OneByteBoolean JsValueIsEqual([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSValueRef")] JsValue *a, [NativeTypeName("JSValueRef")] JsValue *b, [NativeTypeName("JSValueRef *")] JsValue **exception);
public static JsValue *JsObjectMakeTypedArrayWithBytesNoCopy(JsContext *ctx, JsTypedArrayType arrayType, void *bytes, UIntPtr byteLength, FnPtr <TypedArrayBytesDeallocatorCallback> bytesDeallocator, void *deallocatorContext, JsValue **exception) => JsObjectMakeTypedArrayWithBytesNoCopy(ctx, arrayType, bytes, byteLength, (IntPtr)bytesDeallocator, deallocatorContext, exception);
public static extern OneByteBoolean JsValueIsInstanceOfConstructor([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSValueRef")] JsValue *value, [NativeTypeName("JSObjectRef")] JsValue *constructor, [NativeTypeName("JSValueRef *")] JsValue **exception);
public static extern JsValue *JsObjectMakeTypedArrayWithArrayBuffer([NativeTypeName("JSContextRef")] JsContext *ctx, JsTypedArrayType arrayType, [NativeTypeName("JSObjectRef")] JsValue *buffer, [NativeTypeName("JSValueRef *")] JsValue **exception);
public static extern JsValue *JsValueMakeBoolean([NativeTypeName("JSContextRef")] JsContext *ctx, OneByteBoolean boolean);
public static extern JsValue *JsObjectMakeTypedArrayWithArrayBufferAndOffset([NativeTypeName("JSContextRef")] JsContext *ctx, JsTypedArrayType arrayType, [NativeTypeName("JSObjectRef")] JsValue *buffer, [NativeTypeName("size_t")] UIntPtr byteOffset, [NativeTypeName("size_t")] UIntPtr length, [NativeTypeName("JSValueRef *")] JsValue **exception);
public static extern JsValue *JsValueMakeString([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSStringRef")] JsString * @string);
public static extern OneByteBoolean JsObjectDeletePropertyForKey([NativeTypeName("JSContextRef")] JsContext *ctx, [NativeTypeName("JSObjectRef")] JsValue * @object, [NativeTypeName("JSValueRef")] JsValue *propertyKey, [NativeTypeName("JSValueRef *")] JsValue **exception);