-
Notifications
You must be signed in to change notification settings - Fork 893
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
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] <[email protected]>
- Loading branch information
1 parent
00c5712
commit 086b1d9
Showing
5 changed files
with
175 additions
and
178 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.