fix(types): revert nullable body to a plain string

This commit is contained in:
Erica Marigold 2024-04-20 16:37:09 +05:30
parent 77edb89829
commit 7a85117ad3
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -61,7 +61,7 @@ export type FetchResponse = {
statusCode: number,
statusMessage: string,
headers: HttpHeaderMap,
body: string?,
body: string,
}
--[=[