import { fetchOrThrow } from './fetchOrThrow'; export async function fetchJson(uri: string): Promise { return (await fetchOrThrow(uri)).json() }