ChemPare Documentation - v0.0.0
    Preparing search index...

    Interface MacklinApiRequestOptions

    Configuration options for making requests to the Macklin API. Supports both GET and POST/PUT requests with optional headers, URL parameters, and request body.

    interface MacklinApiRequestOptions {
        headers?: Partial<Record<string, string | number | boolean>>;
        params?: Record<string, string | number | boolean>;
        body?: Record<string, unknown>;
        method?: "GET" | "POST" | "PUT" | "DELETE";
    }
    Index

    Properties

    headers?: Partial<Record<string, string | number | boolean>>

    Optional HTTP headers to include in the request

    params?: Record<string, string | number | boolean>

    URL parameters for GET requests or query parameters

    body?: Record<string, unknown>

    Request body for POST/PUT requests

    method?: "GET" | "POST" | "PUT" | "DELETE"

    HTTP method to use (defaults to GET)