Interface AcDbWorkerMessage<TInput>

Base class for worker scripts that handles all message passing Users only need to implement the executeTask method

interface AcDbWorkerMessage<TInput = unknown> {
    id: string;
    input: TInput;
}

Type Parameters

  • TInput = unknown

Properties

Properties

id: string
input: TInput