diff --git a/lib/node_modules/@stdlib/array/docs/types/index.d.ts b/lib/node_modules/@stdlib/array/docs/types/index.d.ts index 78fe7f805686..8ed7d7717198 100644 --- a/lib/node_modules/@stdlib/array/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/array/docs/types/index.d.ts @@ -21,6 +21,7 @@ /* eslint-disable max-lines */ import base = require( '@stdlib/array/base' ); +import BooleanArray = require( '@stdlib/array/bool' ); import ArrayBuffer = require( '@stdlib/array/buffer' ); import cartesianPower = require( '@stdlib/array/cartesian-power' ); import cartesianProduct = require( '@stdlib/array/cartesian-product' ); @@ -120,6 +121,70 @@ interface Namespace { */ base: typeof base; + /** + * Boolean array constructor. + * + * @param arg - length, typed array, array-like object, or buffer + * @param byteOffset - byte offset (default: 0) + * @param length - view length + * @throws if provided only a single argument, must provide a valid argument + * @throws byte offset must be a nonnegative integer + * @throws must provide sufficient memory to accommodate byte offset and view length requirements + * @returns boolean array + * + * @example + * var arr = new ns.BooleanArray(); + * // returns + * + * var len = arr.length; + * // returns 0 + * + * @example + * var arr = new ns.BooleanArray( 2 ); + * // returns + * + * var len = arr.length; + * // returns 2 + * + * @example + * var arr = new ns.BooleanArray( [ true, false ] ); + * // returns + * + * var len = arr.length; + * // returns 2 + * + * @example + * var ArrayBuffer = require( '@stdlib/array/buffer' ); + * + * var buf = new ArrayBuffer( 16 ); + * var arr = new ns.BooleanArray( buf ); + * // returns + * + * var len = arr.length; + * // returns 16 + * + * @example + * var ArrayBuffer = require( '@stdlib/array/buffer' ); + * + * var buf = new ArrayBuffer( 16 ); + * var arr = new ns.BooleanArray( buf, 8 ); + * // returns + * + * var len = arr.length; + * // returns 8 + * + * @example + * var ArrayBuffer = require( '@stdlib/array/buffer' ); + * + * var buf = new ArrayBuffer( 32 ); + * var arr = new ns.BooleanArray( buf, 8, 2 ); + * // returns + * + * var len = arr.length; + * // returns 2 + */ + BooleanArray: typeof BooleanArray; + /** * Constructor which returns an object used to represent a generic, fixed-length raw binary data buffer. */ diff --git a/lib/node_modules/@stdlib/complex/base/docs/types/index.d.ts b/lib/node_modules/@stdlib/complex/base/docs/types/index.d.ts index bd6212672ea6..d80b6739d522 100644 --- a/lib/node_modules/@stdlib/complex/base/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/complex/base/docs/types/index.d.ts @@ -20,7 +20,6 @@ /* eslint-disable max-lines */ -import assert = require( '@stdlib/complex/base/assert' ); import cast = require( '@stdlib/complex/base/cast-return' ); import wrap = require( '@stdlib/complex/base/wrap-function' ); @@ -28,11 +27,6 @@ import wrap = require( '@stdlib/complex/base/wrap-function' ); * Interface describing the `base` namespace. */ interface Namespace { - /** - * Base complex number assert functions. - */ - assert: typeof assert; - /** * Wraps an n-ary function and casts a function's return value to a complex number. *