Skip to main content
Module

x/netzo/mod.ts>IRequest

SDK for Netzo, the open platform to instantly deploy JavaScript and TypeScript to URL endpoints, connect essential APIs, automate business processes and build internal tools faster, without managing servers.
Go to Latest
interface IRequest
import { type IRequest } from "https://deno.land/x/netzo@v0.1.44/mod.ts";

Index Signatures

[key: string | symbol]: unknown

Properties

optional
method:
| "GET"
| "POST"
| "PUT"
| "PATCH"
| "DELETE"
optional
baseURL: string
optional
url: string
optional
authorization: Authorization
optional
query: Record<string, string>
optional
headers: Record<string, string>
optional
body: string
optional
variables: Record<string, string>