Skip to content

Instantly share code, notes, and snippets.

@jmercouris
Created January 5, 2018 00:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmercouris/aee11eb30d5b6415bd1859e87302af69 to your computer and use it in GitHub Desktop.
Save jmercouris/aee11eb30d5b6415bd1859e87302af69 to your computer and use it in GitHub Desktop.
/* JavaScript data types */
/*! @typedef JSValueRef A JavaScript value. The base type for all JavaScript values, and polymorphic functions on them. */
typedef const struct OpaqueJSValue* JSValueRef;
/*! @typedef JSObjectRef A JavaScript object. A JSObject is a JSValue. */
typedef struct OpaqueJSValue* JSObjectRef;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment