@ac-essentials/misc-util
    Preparing search index...

    Interface INodeAggregateError

    Node AggregateError interface (AggregateError with a code property)

    interface INodeAggregateError {
        cause?: unknown;
        code: string;
        errors: any[];
        message: string;
        name: string;
        stack?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cause?: unknown
    code: string

    The error code

    errors: any[]
    message: string
    name: string
    stack?: string