Interface RequestServerProps

interface RequestServerProps {
    authorizationToken?: string;
    body?: string;
    endpoint: `/${string}`;
    headers: Header;
    method: "POST" | "GET" | "PUT" | "DELETE";
    url: string;
}

Properties

authorizationToken?: string
body?: string
endpoint: `/${string}`
headers: Header
method: "POST" | "GET" | "PUT" | "DELETE"
url: string