Define ProgressBarTask Interface.

interface IProgressBarTask {
    currentProgress: number;
    description: string;
    id: number;
    isCompleted: boolean;
    quest: IQuest;
    totalProgress: number;
    type: CompletionTypes;
    addProgress(increment?: number): void;
    fire<T>(event: T, ...args?: any[]): EventHandler;
    off<T>(event: T, listener: IProgressBarTaskEvents[T]): EventHandler;
    on<T>(event: T, listener: IProgressBarTaskEvents[T]): EventHandle;
}

Hierarchy (view full)

Properties

currentProgress: number

The current progress steps.

description: string

The description of the task.

id: number

The ID of the task.

isCompleted: boolean

Whether the task is completed.

quest: IQuest

The parent quest of the task.

totalProgress: number

The total progress steps needed to complete the task.

The type of the task.

Methods

  • Planned

    Update the progress of the task.

    Parameters

    • Optionalincrement: number

      Optional increment value. If not provided, the progress is incremented by 1.

    Returns void

  • Send a specific event.

    Type Parameters

    Parameters

    • event: T

      Event name

    • Optional Rest...args: any[]

      Event parameters

    Returns EventHandler

  • Unsubscribe from a specific event.

    Type Parameters

    Parameters

    Returns EventHandler

  • Subscribe to a specific event.

    Type Parameters

    Parameters

    Returns EventHandle