import fetch from "node-fetch" export async function api(url: string): Promise { return fetch(url) .then(response => { if (!response.ok) { throw new Error(response.statusText) } return response.json() as Promise }) }