Skip to content

Commit 32a2827

Browse files
committed
fix: update import paths for complex type defs
Ref: fa7e420
1 parent fa7e420 commit 32a2827

File tree

65 files changed

+67
-65
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+67
-65
lines changed

lib/node_modules/@stdlib/array/base/accessor-getter/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64, Complex128 } from '@stdlib/types/object';
23+
import { Complex64, Complex128 } from '@stdlib/types/complex';
2424
import { Complex64Array, Complex128Array, AccessorArrayLike } from '@stdlib/types/array';
2525

2626
/**

lib/node_modules/@stdlib/array/base/accessor-setter/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { ComplexLike } from '@stdlib/types/object';
23+
import { ComplexLike } from '@stdlib/types/complex';
2424
import { Complex64Array, Complex128Array, AccessorArrayLike } from '@stdlib/types/array';
2525

2626
/**

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
/// <reference types="@stdlib/types"/>
2222

2323
import { Complex64Array, Complex128Array, AccessorArrayLike } from '@stdlib/types/array';
24-
import { Collection, Complex64, Complex128, ComplexLike } from '@stdlib/types/object';
24+
import { Complex64, Complex128, ComplexLike } from '@stdlib/types/complex';
25+
import { Collection } from '@stdlib/types/object';
2526

2627
/**
2728
* Returns an element from a `Float64Array`.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
/// <reference types="@stdlib/types"/>
2222

2323
import { Complex64Array, Complex128Array, AccessorArrayLike } from '@stdlib/types/array';
24-
import { Collection, Complex64, Complex128, ComplexLike } from '@stdlib/types/object';
24+
import { Complex64, Complex128, ComplexLike } from '@stdlib/types/complex';
25+
import { Collection } from '@stdlib/types/object';
2526

2627
/**
2728
* Returns an element from a `Float64Array`.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
import { Iterator as Iter, IterableIterator } from '@stdlib/types/iter';
2424
import { ArrayLike, RealOrComplexTypedArray, Complex128Array as Complex128ArrayInterface } from '@stdlib/types/array';
25-
import { ComplexLike, Complex128 } from '@stdlib/types/object';
25+
import { ComplexLike, Complex128 } from '@stdlib/types/complex';
2626
import ArrayBuffer = require( '@stdlib/array/buffer' );
2727

2828
// Define a union type representing both iterable and non-iterable iterators:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
import { Iterator as Iter, IterableIterator } from '@stdlib/types/iter';
2424
import { ArrayLike, RealOrComplexTypedArray, Complex64Array as Complex64ArrayInterface } from '@stdlib/types/array';
25-
import { ComplexLike, Complex64 } from '@stdlib/types/object';
25+
import { ComplexLike, Complex64 } from '@stdlib/types/complex';
2626
import ArrayBuffer = require( '@stdlib/array/buffer' );
2727

2828
// Define a union type representing both iterable and non-iterable iterators:

lib/node_modules/@stdlib/array/full-like/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/// <reference types="@stdlib/types"/>
2222

2323
import { Complex128Array, Complex64Array, AnyArray, DataType } from '@stdlib/types/array';
24-
import { ComplexLike } from '@stdlib/types/object';
24+
import { ComplexLike } from '@stdlib/types/complex';
2525

2626
/**
2727
* Creates a filled array having the same length as a provided input array.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/// <reference types="@stdlib/types"/>
2222

2323
import { AnyArray, Complex128Array, Complex64Array, DataType } from '@stdlib/types/array';
24-
import { ComplexLike } from '@stdlib/types/object';
24+
import { ComplexLike } from '@stdlib/types/complex';
2525

2626
/**
2727
* Creates a filled array having a specified length.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/// <reference types="@stdlib/types"/>
2222

2323
import { FloatOrComplexDataType as DataType, ArrayLike, FloatOrComplexTypedArray, Complex64Array, Complex128Array } from '@stdlib/types/array';
24-
import { ComplexLike, Complex64, Complex128 } from '@stdlib/types/object';
24+
import { ComplexLike, Complex64, Complex128 } from '@stdlib/types/complex';
2525

2626
/**
2727
* Interface describing function options.

lib/node_modules/@stdlib/array/min-dtype/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/// <reference types="@stdlib/types"/>
2222

2323
import { RealDataType, ComplexDataType, DataType } from '@stdlib/types/array';
24-
import { ComplexLike } from '@stdlib/types/object';
24+
import { ComplexLike } from '@stdlib/types/complex';
2525

2626
/**
2727
* Returns the minimum array data type of the closest "kind" necessary for storing a provided scalar value.

lib/node_modules/@stdlib/assert/is-complex-like/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { ComplexLike } from '@stdlib/types/object';
23+
import { ComplexLike } from '@stdlib/types/complex';
2424

2525
/**
2626
* Tests if a value is a complex number-like object.

lib/node_modules/@stdlib/assert/is-complex/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128, Complex64 } from '@stdlib/types/object';
23+
import { Complex128, Complex64 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Tests if a value is a 64-bit or 128-bit complex number.

lib/node_modules/@stdlib/assert/is-complex128/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Tests if a value is a 128-bit complex number.

lib/node_modules/@stdlib/assert/is-complex64/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64 } from '@stdlib/types/object';
23+
import { Complex64 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Tests if a value is a 64-bit complex number.

lib/node_modules/@stdlib/complex/base/cast-return/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { ComplexLike } from '@stdlib/types/object';
23+
import { ComplexLike } from '@stdlib/types/complex';
2424

2525
/**
2626
* Real or complex number.

lib/node_modules/@stdlib/complex/base/wrap-function/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { ComplexLike } from '@stdlib/types/object';
23+
import { ComplexLike } from '@stdlib/types/complex';
2424

2525
/**
2626
* Real or complex number.

lib/node_modules/@stdlib/complex/base/wrap-function/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/// <reference types="@stdlib/types"/>
2020

21-
import { ComplexLike } from '@stdlib/types/object';
21+
import { ComplexLike } from '@stdlib/types/complex';
2222
import Complex64 = require( '@stdlib/complex/float32' );
2323
import wrap = require( './index' );
2424

lib/node_modules/@stdlib/complex/dtype/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64, Complex128, ComplexDataType } from '@stdlib/types/object';
23+
import { Complex64, Complex128, ComplexDataType } from '@stdlib/types/complex';
2424

2525
/**
2626
* Complex number data type.

lib/node_modules/@stdlib/complex/dtypes/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { ComplexDataType } from '@stdlib/types/object';
23+
import { ComplexDataType } from '@stdlib/types/complex';
2424

2525
/**
2626
* Returns a list of complex number data types.

lib/node_modules/@stdlib/complex/imag/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Returns the imaginary component of a double-precision complex floating-point number.

lib/node_modules/@stdlib/complex/imagf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64 } from '@stdlib/types/object';
23+
import { Complex64 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Returns the imaginary component of a single-precision complex floating-point number.

lib/node_modules/@stdlib/complex/promotion-rules/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { ComplexDataType } from '@stdlib/types/object';
23+
import { ComplexDataType } from '@stdlib/types/complex';
2424

2525
/**
2626
* Real number data types.

lib/node_modules/@stdlib/complex/real/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Returns the real component of a double-precision complex floating-point number.

lib/node_modules/@stdlib/complex/realf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64 } from '@stdlib/types/object';
23+
import { Complex64 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Returns the real component of a single-precision complex floating-point number.

lib/node_modules/@stdlib/complex/reim/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Returns the real and imaginary components of a double-precision complex floating-point number.

lib/node_modules/@stdlib/complex/reimf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64 } from '@stdlib/types/object';
23+
import { Complex64 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Returns the real and imaginary components of a single-precision complex floating-point number.

lib/node_modules/@stdlib/math/base/ops/cadd/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Adds two double-precision complex floating-point numbers.

lib/node_modules/@stdlib/math/base/ops/caddf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64 } from '@stdlib/types/object';
23+
import { Complex64 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Adds two single-precision complex floating-point numbers.

lib/node_modules/@stdlib/math/base/ops/cdiv/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Divides two double-precision complex floating-point numbers.

lib/node_modules/@stdlib/math/base/ops/cmul/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Multiplies two double-precision complex floating-point numbers.

lib/node_modules/@stdlib/math/base/ops/cmulf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64 } from '@stdlib/types/object';
23+
import { Complex64 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Multiplies two single-precision complex floating-point numbers.

lib/node_modules/@stdlib/math/base/ops/cneg/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Negates a double-precision complex floating-point number.

lib/node_modules/@stdlib/math/base/ops/cnegf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64 } from '@stdlib/types/object';
23+
import { Complex64 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Negates a single-precision complex floating-point number.

lib/node_modules/@stdlib/math/base/ops/csub/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Subtracts two double-precision complex floating-point numbers.

lib/node_modules/@stdlib/math/base/ops/csubf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64 } from '@stdlib/types/object';
23+
import { Complex64 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Subtracts two single-precision complex floating-point numbers.

lib/node_modules/@stdlib/math/base/special/cabs/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Computes the absolute value of a double-precision complex floating-point number.

lib/node_modules/@stdlib/math/base/special/cabs2/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Computes the squared absolute value of a double-precision complex floating-point number.

lib/node_modules/@stdlib/math/base/special/cabs2f/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64 } from '@stdlib/types/object';
23+
import { Complex64 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Computes the squared absolute value of a single-precision complex floating-point number.

lib/node_modules/@stdlib/math/base/special/cabsf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64 } from '@stdlib/types/object';
23+
import { Complex64 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Computes the absolute value of a single-precision complex floating-point number.

lib/node_modules/@stdlib/math/base/special/cceil/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Rounds a double-precision complex floating-point number toward positive infinity.

lib/node_modules/@stdlib/math/base/special/cceilf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex64 } from '@stdlib/types/object';
23+
import { Complex64 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Rounds a single-precision complex floating-point number toward positive infinity.

lib/node_modules/@stdlib/math/base/special/ccis/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Evaluates the cis function for a double-precision complex floating-point number.

lib/node_modules/@stdlib/math/base/special/cexp/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Evaluates the exponential function for a double-precision complex floating-point number.

lib/node_modules/@stdlib/math/base/special/cflipsign/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Complex128 } from '@stdlib/types/object';
23+
import { Complex128 } from '@stdlib/types/complex';
2424

2525
/**
2626
* Returns a double-precision complex floating-point number with the same magnitude as `z` and the sign of `y*z`.

0 commit comments

Comments
 (0)