1
0
silverbullet/plugos-syscall/fetch.ts
2022-04-01 17:07:08 +02:00

13 lines
298 B
TypeScript

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