brepjs API Reference
    Preparing search index...

    Interface BatchItemResult

    Outcome of one operation in a batch. Each item carries its own success/error, so one failing op doesn't discard the others. Returned (as resultData) in the batch's SuccessResponse.

    interface BatchItemResult {
        error?: string;
        resultBrep?: string;
        resultData?: unknown;
        success: boolean;
    }
    Index

    Properties

    error?: string
    resultBrep?: string
    resultData?: unknown
    success: boolean