We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ce9a5 commit 0451f6cCopy full SHA for 0451f6c
index.d.ts
@@ -10,7 +10,7 @@
10
// Iterable, Iterator, AsyncIterable, and AsyncIterator so they are not
11
// defined here. However you may need to configure TypeScript to include them.
12
13
-export var $$iterator: symbol
+export const $$iterator: unique symbol
14
15
export function isIterable(obj: any): obj is Iterable<any>
16
@@ -45,7 +45,7 @@ export function forEach<TCollection extends { length: number }>(
45
thisArg?: any
46
): void
47
48
-export var $$asyncIterator: symbol
+export const $$asyncIterator: unique symbol
49
50
export function isAsyncIterable(obj: any): obj is AsyncIterable<any>
51
0 commit comments