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