Mobile Locker JavaScript SDK
    Preparing search index...

    Interface HTTPRequestOptions

    interface HTTPRequestOptions {
        body?: unknown;
        headers?: Record<string, string>;
        method?: HTTPMethod;
        responseType?: HTTPResponseType;
        timeout?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    body?: unknown
    headers?: Record<string, string>

    Additional request headers.

    method?: HTTPMethod
    responseType?: HTTPResponseType

    Expected response format. Defaults to 'json'.

    timeout?: number

    Request timeout in milliseconds. Defaults to 30000.