1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-03-18 03:00:50 +00:00

js-sys: Add extends attributes for js_sys::UInt32Array

This commit is contained in:
Sendil Kumar 2018-08-14 19:32:34 +02:00
parent e58e231fdf
commit b80090d395
2 changed files with 2 additions and 0 deletions
crates/js-sys
src
tests/wasm

@ -2700,6 +2700,7 @@ extern "C" {
// Uint32Array
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen(extends = Object)]
#[derive(Clone, Debug)]
pub type Uint32Array;

@ -8,6 +8,7 @@ macro_rules! each {
$m!(Uint8Array);
$m!(Uint8ClampedArray);
$m!(Uint16Array);
$m!(Uint32Array);
)
}