Skip to content
ts
// Impossible to type
const 
body
= await
fetch
("http://example.com/api/users/1")
.
then
((
value
) =>
value
.
json
());
void
body
;

Released under the MIT License.