Skip to content

Commit 39dd31d

Browse files
committed
Linting fix
1 parent 54a7476 commit 39dd31d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core-js-types/src/ts5-2/pure/proposals/iterator.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ declare namespace CoreJS {
207207
* - inclusive: If true, the end value is included in the range (default is false).
208208
* @returns An iterator of numbers.
209209
*/
210-
range(start: number, end: number | typeof Infinity | typeof Number.NEGATIVE_INFINITY, options?: number | IteratorRangeOptions<number>): CoreJSIteratorObject<number, undefined, unknown>
210+
range(start: number, end: number | typeof Infinity | typeof Number.NEGATIVE_INFINITY, options?: number | IteratorRangeOptions<number>): CoreJSIteratorObject<number, undefined, unknown>;
211211

212212
/**
213213
* Returns an iterator that generates a sequence of bigints within a range.
@@ -218,7 +218,7 @@ declare namespace CoreJS {
218218
* - inclusive: If true, the end value is included in the range (default is false).
219219
* @returns An iterator of bigints.
220220
*/
221-
range(start: bigint, end: bigint, options?: bigint | IteratorRangeOptions<bigint>): CoreJSIteratorObject<bigint, undefined, unknown>
221+
range(start: bigint, end: bigint, options?: bigint | IteratorRangeOptions<bigint>): CoreJSIteratorObject<bigint, undefined, unknown>;
222222

223223
/**
224224
* Creates an iterator that sequentially yields values from the provided iterables.

0 commit comments

Comments
 (0)