interface SendRequestArgs {
    body?: Uint8Array | Json;
    headers?: {
        [key: string]: string;
    };
    method?: "get" | "post" | "put" | "delete";
    url: string;
}

Properties

body?: Uint8Array | Json
headers?: {
    [key: string]: string;
}

Type declaration

  • [key: string]: string
method?: "get" | "post" | "put" | "delete"

post by default

url: string