Update tasks helper

interface UpdateTasksHelper {
    currentTask?: ISimulationTask;
    tasks?: ISimulationTask[];
    updateTasks: () => void;
}

Properties

currentTask?: ISimulationTask
tasks?: ISimulationTask[]
updateTasks: () => void