@tsdotnet/threading - v2.0.14
    Preparing search index...

    Interface WorkerLike

    interface WorkerLike {
        onerror?: Action<any> | null;
        onmessage?: Action<{ data: any }> | null;
        postMessage(obj: any): void;
        terminate(): void;
    }
    Index

    Properties

    onerror?: Action<any> | null
    onmessage?: Action<{ data: any }> | null

    Methods