Cerbos JavaScript SDK
    Preparing search index...

    Interface AsyncResultLoading

    Result of a pending async method call.

    interface AsyncResultLoading {
        data: undefined;
        error: undefined;
        isLoading: true;
    }
    Index

    Properties

    Properties

    data: undefined

    Data has not yet been returned by the async method call.

    error: undefined

    An error has not yet been thrown by the async method call.

    isLoading: true

    The async method call is in progress.