import { syscall } from "./syscall"; export async function json(url: RequestInfo, init: RequestInit): Promise { return syscall("fetch.json", url, init); } export async function text( url: RequestInfo, init: RequestInit = {} ): Promise { return syscall("fetch.text", url, init); }