diff --git a/NOTICE b/NOTICE index 81d66167db..9f4c4679e5 100644 --- a/NOTICE +++ b/NOTICE @@ -45,6 +45,7 @@ under the licensing terms detailed in LICENSE: * Congcong Cai <77575210+HerrCai0907@users.noreply.github.com> * mooooooi * Yasushi Ando +* Syed Jafri Portions of this software are derived from third-party works licensed under the following terms: diff --git a/std/assembly/index.d.ts b/std/assembly/index.d.ts index 7a6cc9e7e5..8f9fda79fb 100644 --- a/std/assembly/index.d.ts +++ b/std/assembly/index.d.ts @@ -1504,6 +1504,8 @@ declare class ArrayBuffer { declare class DataView { /** The `buffer` accessor property represents the `ArrayBuffer` or `SharedArrayBuffer` referenced by the `DataView` at construction time. */ readonly buffer: ArrayBuffer; + /** Returns raw pointer to data storage including offset (unsafe). */ + readonly dataStart: usize; /** The `byteLength` accessor property represents the length (in bytes) of this view from the start of its `ArrayBuffer` or `SharedArrayBuffer`. */ readonly byteLength: i32; /** The `byteOffset` accessor property represents the offset (in bytes) of this view from the start of its `ArrayBuffer` or `SharedArrayBuffer`. */