Skip to content

Commit eaea34d

Browse files
committed
Rename module
1 parent b0fdab1 commit eaea34d

File tree

13 files changed

+17
-13
lines changed

13 files changed

+17
-13
lines changed

lib/node_modules/@stdlib/iter/any-by/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 { Iterator } from '@stdlib/types/iterator';
23+
import { Iterator } from '@stdlib/types/iter';
2424

2525
/**
2626
* Checks whether an iterated value passes a test.

lib/node_modules/@stdlib/iter/any/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 { Iterator } from '@stdlib/types/iterator';
23+
import { Iterator } from '@stdlib/types/iter';
2424

2525
/**
2626
* Tests whether at least one iterated value is truthy.

lib/node_modules/@stdlib/iter/concat/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 { Iterator as Iter, IterableIterator } from '@stdlib/types/iterator';
23+
import { Iterator as Iter, IterableIterator } from '@stdlib/types/iter';
2424

2525
// Define a union type representing both iterable and non-iterable iterators:
2626
type Iterator = Iter | IterableIterator;

lib/node_modules/@stdlib/iter/constant/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 { Iterator as Iter, IterableIterator } from '@stdlib/types/iterator';
23+
import { Iterator as Iter, IterableIterator } from '@stdlib/types/iter';
2424

2525
// Define a union type representing both iterable and non-iterable iterators:
2626
type Iterator = Iter | IterableIterator;

lib/node_modules/@stdlib/iter/counter/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 { Iterator as Iter, IterableIterator } from '@stdlib/types/iterator';
23+
import { Iterator as Iter, IterableIterator } from '@stdlib/types/iter';
2424

2525
// Define a union type representing both iterable and non-iterable iterators:
2626
type Iterator = Iter | IterableIterator;

lib/node_modules/@stdlib/iter/every-by/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 { Iterator } from '@stdlib/types/iterator';
23+
import { Iterator } from '@stdlib/types/iter';
2424

2525
/**
2626
* Checks whether an iterated value passes a test.

lib/node_modules/@stdlib/iter/every/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 { Iterator } from '@stdlib/types/iterator';
23+
import { Iterator } from '@stdlib/types/iter';
2424

2525
/**
2626
* Tests whether all iterated values are truthy.

lib/node_modules/@stdlib/iter/none-by/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 { Iterator } from '@stdlib/types/iterator';
23+
import { Iterator } from '@stdlib/types/iter';
2424

2525
/**
2626
* Checks whether an iterated value passes a test.

lib/node_modules/@stdlib/iter/none/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 { Iterator } from '@stdlib/types/iterator';
23+
import { Iterator } from '@stdlib/types/iter';
2424

2525
/**
2626
* Tests whether all iterated values are falsy.

lib/node_modules/@stdlib/iter/some-by/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 { Iterator } from '@stdlib/types/iterator';
23+
import { Iterator } from '@stdlib/types/iter';
2424

2525
/**
2626
* Checks whether an iterated value passes a test.

0 commit comments

Comments
 (0)