@fluentity/core
    Preparing search index...

    Interface HttpRequest

    Represents an HTTP request configuration.

    interface HttpRequest {
        body?: any;
        method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "HEAD" | "OPTIONS";
        options?: RequestOptions;
        url: string;
    }
    Index

    Properties

    body?: any

    Request body data

    method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "HEAD" | "OPTIONS"

    HTTP method to use

    options?: RequestOptions

    Request options including method, headers, body, etc.

    url: string

    The full URL to send the request to