Skip to content

Commit 8d3352e

Browse files
committed
fix: add missing property
1 parent 4fb75ab commit 8d3352e

File tree

1 file changed

+11
-0
lines changed
  • lib/node_modules/@stdlib/array/complex128/docs/types

1 file changed

+11
-0
lines changed

lib/node_modules/@stdlib/array/complex128/docs/types/index.d.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,17 @@ declare class Complex128Array implements Complex128ArrayInterface {
368368
*/
369369
at( i: number ): Complex128 | void;
370370

371+
/**
372+
* Pointer to the underlying data buffer.
373+
*
374+
* @example
375+
* var arr = new Complex128Array( 10 );
376+
*
377+
* var buf = arr.buffer;
378+
* // returns <ArrayBuffer>
379+
*/
380+
readonly buffer: ArrayBuffer;
381+
371382
/**
372383
* Length (in bytes) of the array.
373384
*

0 commit comments

Comments
 (0)