@mcp-z/server
    Preparing search index...

    Interface ErrorBranch

    Error branch type for discriminated union results

    interface ErrorBranch {
        code?: ErrorCode;
        debug?: Record<string, unknown>;
        error: string;
        help?: string;
        type: "error";
    }
    Index

    Properties

    code?: ErrorCode
    debug?: Record<string, unknown>
    error: string
    help?: string
    type: "error"