diff --git a/src/typedarray.rs b/src/typedarray.rs index 0add7dfb3..bf9a0f9e1 100644 --- a/src/typedarray.rs +++ b/src/typedarray.rs @@ -291,6 +291,8 @@ pub type Float32Array<'a> = TypedArray<'a, Float32>; pub type Float64Array<'a> = TypedArray<'a, Float64>; /// The ArrayBuffer type. pub type ArrayBuffer<'a> = TypedArray<'a, ArrayBufferU8>; +/// The ArrayBufferView type +pub type ArrayBufferView<'a> = TypedArray<'a, ArrayBufferViewU8>; #[macro_export] macro_rules! typedarray {