// request.ts export async function request( url: string, options: RequestInit = {} ): Promise { const response = await fetch(url, options) const data = await response.json() return data as T }