Chore: Improve types (#85659)

* fixing some types

* more type fixes

* few more

* last couple

* tiny tweak
This commit is contained in:
Ashley Harrison
2024-04-08 09:56:21 +01:00
committed by GitHub
parent 46ee87a0fc
commit b3cff22db3
49 changed files with 152 additions and 283 deletions

View File

@@ -812,6 +812,6 @@ const createFetchResponse = <T>(data: T): FetchResponse<T> => ({
type: 'basic',
statusText: 'Ok',
redirected: false,
headers: {} as unknown as Headers,
headers: new Headers(),
ok: true,
});