Variable WORKER_EVENT_TYPESConst

WORKER_EVENT_TYPES: {
    BEGIN: "begin";
    END: "end";
    ERROR: "error";
    PROGRESS: "progress";
    TEST: "test";
} = ...

Event types that can be received (!) by the worker.

Type declaration

  • Readonly BEGIN: "begin"

    Start event.

  • Readonly END: "end"

    End event.

  • Readonly ERROR: "error"

    Error event.

  • Readonly PROGRESS: "progress"

    Progress event.

  • Readonly TEST: "test"

    Debug event.

Generated using TypeDoc