hosanna-ui-docs - v0.9.0
    Preparing search index...

    Represents the arguments required to make an HTTP request.

    interface HttpArgs {
        options: {
            body?: JsonData;
            headers?: Record<string, string>;
            method: string;
        };
        url: string;
    }
    Index

    Properties

    Properties

    options: { body?: JsonData; headers?: Record<string, string>; method: string }

    Configuration options for the HTTP request, including method, optional body, and optional headers.

    url: string

    The URL to which the HTTP request will be sent.