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

    Interface RequestOptions

    Represents the options for a request. This type is used to standardize the format of request options across different supplier implementations.

    interface RequestOptions {
        path: string | URL;
        host?: string;
        body?: string | object;
        params?: Maybe<RequestParams>;
        headers?: Maybe<Record<string, string | number | boolean>>;
    }
    Index

    Properties

    path: string | URL
    host?: string
    body?: string | object
    headers?: Maybe<Record<string, string | number | boolean>>