Define CheckTask Interface.

interface ICheckTask {
    description: string;
    id: number;
    isCompleted: boolean;
    quest: IQuest;
    type: CompletionTypes;
    check(): void;
    fire<T>(event: T, ...args?: any[]): EventHandler;
    off<T>(event: T, listener: ITaskEvents[T]): EventHandler;
    on<T>(event: T, listener: ITaskEvents[T]): EventHandle;
}

Hierarchy (view full)

Properties

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.

The type of the task.

Methods

  • Planned

    Check to complete the task.

    Returns void

  • Send a specific event.

    Type Parameters

    • T extends "complete"

    Parameters

    • event: T

      Event name

    • Optional Rest...args: any[]

      Event parameters

    Returns EventHandler

  • Unsubscribe from a specific event.

    Type Parameters

    • T extends "complete"

    Parameters

    Returns EventHandler

  • Subscribe to a specific event.

    Type Parameters

    • T extends "complete"

    Parameters

    Returns EventHandle