Response type specifically for JSON responses. Used for handling HTTP responses containing JSON content.
async function fetchJSON(): Promise<JSONResponse> { const response = await fetch("https://api.example.com/data"); return response as JSONResponse;} Copy
async function fetchJSON(): Promise<JSONResponse> { const response = await fetch("https://api.example.com/data"); return response as JSONResponse;}
Response type specifically for JSON responses. Used for handling HTTP responses containing JSON content.