Skip to content

Commit 14bacb3

Browse files
committed
fix: update import path for Collection type definition
Ref: stdlib-js@bde4671
1 parent bde4671 commit 14bacb3

File tree

48 files changed

+113
-72
lines changed

Some content is hidden

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

48 files changed

+113
-72
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@
2020

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

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

2726
/**
2827
* Returns an element from a `Float64Array`.

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@
2020

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

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

2726
/**
2827
* Returns an element from a `Float64Array`.

lib/node_modules/@stdlib/array/base/assert/contains/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 { Collection } from '@stdlib/types/object';
23+
import { Collection } from '@stdlib/types/array';
2424

2525
/**
2626
* Unary function which tests whether an array contains a provided search value.

lib/node_modules/@stdlib/array/base/assert/is-accessor-array/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 { Collection } from '@stdlib/types/object';
23+
import { Collection } from '@stdlib/types/array';
2424

2525
/**
2626
* Interface defining an array-like object supporting the accessor (get/set) protocol.

lib/node_modules/@stdlib/array/base/broadcast-array/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 { Collection } from '@stdlib/types/object';
23+
import { Collection } from '@stdlib/types/array';
2424

2525
/**
2626
* Interface describing a broadcast object.

lib/node_modules/@stdlib/array/base/cartesian-power/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 { Collection } from '@stdlib/types/object';
23+
import { Collection } from '@stdlib/types/array';
2424

2525
/**
2626
* Returns the Cartesian power.

lib/node_modules/@stdlib/array/base/cartesian-product/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 { Collection } from '@stdlib/types/object';
23+
import { Collection } from '@stdlib/types/array';
2424

2525
/**
2626
* Returns the Cartesian product.

lib/node_modules/@stdlib/array/base/cartesian-square/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 { Collection } from '@stdlib/types/object';
23+
import { Collection } from '@stdlib/types/array';
2424

2525
/**
2626
* Returns the Cartesian square.

lib/node_modules/@stdlib/array/base/copy-indexed/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 { Collection } from '@stdlib/types/object';
23+
import { Collection } from '@stdlib/types/array';
2424

2525
/**
2626
* Copies the elements of an indexed array-like object to a new "generic" array.

lib/node_modules/@stdlib/array/base/copy/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 { Collection } from '@stdlib/types/object';
23+
import { Collection } from '@stdlib/types/array';
2424

2525
/**
2626
* Copies the elements of an array-like object to a new "generic" array.

0 commit comments

Comments
 (0)