Microsoft/TypeScript
Auf GitHub ansehenDocument the Iterator, Iterable, IterableIterator types
Open
#49.526 geöffnet am 13. Juni 2022
BugDomain: lib.d.tsHelp Wanted
Repository-Metriken
- Stars
- (48.455 Stars)
- PR-Merge-Metriken
- (Durchschn. Merge 6T 17h) (9 gemergte PRs in 30 T)
Beschreibung
lib Update Request
Configuration Check
My compilation target is ES2020 and my lib is the default.
Missing / Incorrect Definition
IterableIterator, Iterable, Iterator
Sample Code
While working on some VS Code api, we realized we don't understand what an IterableIterator is compared to Iterable. It would be helpful to document these interfaces because they are used in the stdlib and for any code authors who may be using them too
const m = new Map();
m.entries() // look at type here
Documentation Link
Unsure