Nevis Mobile Authentication SDK React Native plugin
    Preparing search index...

    Interface HttpOperation<T>Abstract

    An operation that requires sending HTTP requests to the backend.

    interface HttpOperation<T extends HttpOperation<T>> {
        requestHeaders(requestHeaders: RequestHeaders): T;
        execute(): Promise<void>;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Methods

    • Specifies the additional request headers that must be included in the HTTP requests sent by the operation.

      Parameters

      Returns T

      an HttpOperation object.

    • Executes the operation asynchronously.

      Returns Promise<void>