Viewer
    Preparing search index...

    Interface ITaskEvent

    Definition of the task event. These events are sent for task specific events (EVENTTYPE_TASK).

    interface ITaskEvent {
        id: string;
        progress: number;
        type: TASK_TYPE;
        category?: TaskCategoryTypes;
        data?: unknown;
        status?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: string

    The id of the task.

    progress: number

    The progress of the task.

    type: TASK_TYPE

    The type of the task.

    The category of the task (if available).

    data?: unknown

    The data of the task.

    status?: string

    The status of the task.