Skip to content

Commit 91ad072

Browse files
committed
fix: add missing property
1 parent 8d3352e commit 91ad072

File tree

1 file changed

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

1 file changed

+11
-0
lines changed

lib/node_modules/@stdlib/array/complex64/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 Complex64Array implements Complex64ArrayInterface {
368368
*/
369369
at( i: number ): Complex64 | void;
370370

371+
/**
372+
* Pointer to the underlying data buffer.
373+
*
374+
* @example
375+
* var arr = new Complex64Array( 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)