Skip to content

Commit 583452c

Browse files
committed
fix: add missing property
1 parent 91ad072 commit 583452c

File tree

1 file changed

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

1 file changed

+11
-0
lines changed

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,17 @@ declare class BooleanArray implements BooleanArrayInterface {
360360
*/
361361
at( i: number ): boolean | void;
362362

363+
/**
364+
* Pointer to the underlying data buffer.
365+
*
366+
* @example
367+
* var arr = new BooleanArray( 10 );
368+
*
369+
* var buf = arr.buffer;
370+
* // returns <ArrayBuffer>
371+
*/
372+
readonly buffer: ArrayBuffer;
373+
363374
/**
364375
* Length (in bytes) of the array.
365376
*

0 commit comments

Comments
 (0)