Viewer
    Preparing search index...

    Interface ITaskEventDescription

    Description of a task event. Used to create new task events.

    interface ITaskEventDescription {
        id: string;
        progressRange: { max: number; min: number };
        type: TASK_TYPE;
        category?: TaskCategoryTypes;
        data?: unknown;
    }
    Index

    Properties

    id: string

    The id of the task.

    progressRange: { max: number; min: number }

    The progress range 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.