-
Notifications
You must be signed in to change notification settings - Fork 918
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: bump typescript from 5.4.5 to 5.5.2 (#2850)
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.4.5 to 5.5.2. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](microsoft/TypeScript@v5.4.5...v5.5.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
00c5712
commit 17b0b99
Showing
5 changed files
with
174 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export const Headers = globalThis.Headers; | ||
export const Request = globalThis.Request; | ||
export const Response = globalThis.Response; | ||
export const Headers: typeof globalThis.Headers = globalThis.Headers; | ||
export const Request: typeof globalThis.Request = globalThis.Request; | ||
export const Response: typeof globalThis.Response = globalThis.Response; | ||
export default globalThis.fetch; |
6 changes: 3 additions & 3 deletions
6
packages/library-legacy/src/__forks__/react-native/fetch-impl.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export const Headers = globalThis.Headers; | ||
export const Request = globalThis.Request; | ||
export const Response = globalThis.Response; | ||
export const Headers: typeof globalThis.Headers = globalThis.Headers; | ||
export const Request: typeof globalThis.Request = globalThis.Request; | ||
export const Response: typeof globalThis.Response = globalThis.Response; | ||
export default globalThis.fetch; |
Oops, something went wrong.