File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ under the licensing terms detailed in LICENSE:
4545* Congcong Cai <77575210+HerrCai0907@users.noreply.github.com>
4646* mooooooi <emwings@outlook.com>
4747* Yasushi Ando <andyjpn@gmail.com>
48+ * Syed Jafri <syed@metalpay.co>
4849
4950Portions of this software are derived from third-party works licensed under
5051the following terms:
Original file line number Diff line number Diff line change @@ -1504,6 +1504,8 @@ declare class ArrayBuffer {
15041504declare class DataView {
15051505 /** The `buffer` accessor property represents the `ArrayBuffer` or `SharedArrayBuffer` referenced by the `DataView` at construction time. */
15061506 readonly buffer : ArrayBuffer ;
1507+ /** Returns raw pointer to data storage including offset (unsafe). */
1508+ readonly dataStart : usize ;
15071509 /** The `byteLength` accessor property represents the length (in bytes) of this view from the start of its `ArrayBuffer` or `SharedArrayBuffer`. */
15081510 readonly byteLength : i32 ;
15091511 /** The `byteOffset` accessor property represents the offset (in bytes) of this view from the start of its `ArrayBuffer` or `SharedArrayBuffer`. */
You can’t perform that action at this time.
0 commit comments