We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7f4bb0 commit ebc02e1Copy full SHA for ebc02e1
include/js_native_api_types.h
@@ -111,6 +111,8 @@ typedef enum {
111
napi_float64_array,
112
napi_bigint64_array,
113
napi_biguint64_array,
114
+#define NODE_API_HAS_FLOAT16_ARRAY
115
+ napi_float16_array,
116
} napi_typedarray_type;
117
118
typedef enum {
include/node_api_types.h
@@ -5,6 +5,8 @@
5
6
typedef napi_value(NAPI_CDECL* napi_addon_register_func)(napi_env env,
7
napi_value exports);
8
+// False positive: https://github.com/cpplint/cpplint/issues/409
9
+// NOLINTNEXTLINE (readability/casting)
10
typedef int32_t(NAPI_CDECL* node_api_addon_get_api_version_func)(void);
11
12
typedef struct napi_callback_scope__* napi_callback_scope;
0 commit comments