Skip to content

Commit 3c3df0f

Browse files
authored
Merge pull request #1759 from microsoft/dependabot/npm_and_yarn/types/node-24.0.0
auto dependabot: bump @types/node from 22.15.30 to 24.0.0
2 parents 140c626 + beb5041 commit 3c3df0f

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"devDependencies": {
55
"@microsoft/eslint-config-msgraph": "^5.0.0",
66
"@tony.ganchev/eslint-plugin-header": "^3.1.2",
7-
"@types/node": "^22.0.0",
7+
"@types/node": "^24.0.0",
88
"@types/sinon": "^17.0.3",
99
"@typescript-eslint/eslint-plugin": "^8.1.0",
1010
"@typescript-eslint/parser": "^8.1.0",

packages/abstractions/src/headers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,15 +258,15 @@ export class Headers extends Map<string, Set<string>> {
258258
* get keys of the headers collection
259259
* @returns an iterator of keys
260260
*/
261-
public keys(): IterableIterator<string> {
261+
public keys(): MapIterator<string> {
262262
return Object.keys(this.headers)[Symbol.iterator]();
263263
}
264264

265265
/**
266266
* get entries
267267
* @returns an iterator of entries
268268
*/
269-
public entries(): IterableIterator<[string, Set<string>]> {
269+
public entries(): MapIterator<[string, Set<string>]> {
270270
return Object.entries(this.headers)[Symbol.iterator]();
271271
}
272272
}

0 commit comments

Comments
 (0)