Mobile Locker JavaScript SDK
    Preparing search index...

    Interface HTTPRequestOptions

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

    Hierarchy (View Summary)

    Index

    Properties

    headers?: Record<string, string>

    Additional request headers.

    timeout?: number

    Request timeout in milliseconds. Defaults to 30000.

    responseType?: HTTPResponseType

    Expected response format. Defaults to 'json'.

    method?: HTTPMethod
    body?: unknown