async function fetchData(): Promise<string> { const response = await fetch("url"); return await response.json(); }
async function getUser(): Promise<User> { const res = await fetch("/api/user"); return await res.json(); }