TagoIO SDK for JavaScript and TypeScript
    Preparing search index...

    Interface RequestConfig

    Request configuration interface for API requests (replaces AxiosRequestConfig)

    interface RequestConfig {
        data?: any;
        headers?: Record<string, string>;
        method?: string;
        params?: Record<string, any>;
        timeout?: number;
        url?: string;
    }
    Index

    Properties

    data?: any
    headers?: Record<string, string>
    method?: string
    params?: Record<string, any>
    timeout?: number
    url?: string