shajara API
    Preparing search index...

    Interface ScopeFailure

    Failure value reported when a scope fails while closing.

    interface ScopeFailure {
        cause: FailureShape;
        kind: "scope";
        message: string;
        suppressed: readonly FailureShape[];
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Primary failure that caused the scope to fail.

    kind: "scope"
    message: string
    suppressed: readonly FailureShape[]

    Additional failures captured after the scope began failing.