Cerbos JavaScript SDK
    Preparing search index...

    Interface AsyncResultFailure

    Result of a failed async method call.

    interface AsyncResultFailure {
        data: undefined;
        error: Error;
        isLoading: false;
    }
    Index

    Properties

    Properties

    data: undefined

    No data was returned by the async method call.

    error: Error

    Error thrown by the async method call.

    isLoading: false

    The async method call has completed.