1. typedef enum {
    2. napi_int8_array,
    3. napi_uint8_array,
    4. napi_uint8_clamped_array,
    5. napi_int16_array,
    6. napi_uint16_array,
    7. napi_int32_array,
    8. napi_uint32_array,
    9. napi_float32_array,
    10. napi_float64_array,
    11. napi_bigint64_array,
    12. napi_biguint64_array,
    13. } napi_typedarray_type;

    This represents the underlying binary scalar datatype of the TypedArray. Elements of this enum correspond to [Section 22.2][] of the [ECMAScript Language Specification][].