brepjs API Reference
    Preparing search index...

    Interface WorkerResponse

    Base interface for all messages sent from a worker back to the main thread.

    interface WorkerResponse {
        id: string;
        success: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    id: string

    Matches the WorkerRequest.id of the originating request.

    success: boolean

    Discriminant: true for success, false for error.