ente/thirdparty/face-api/dom/fetchJson.ts

6 lines
154 B
TypeScript

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