API reference
petty.network
permission: networkpetty.network.fetch
fetch(url: string, callback: (result: FetchResult | null) => void): voidTypes referenced
FetchResult
interface FetchResult {
status: number;
body: string;
json: unknown | null;
}