Interface QualityList

List of qualities.

interface QualityList {
    item(index): Quality;
    [index: number]: Quality;
}

Hierarchy

Indexable

[index: number]: Quality

Index signature to get the quality at the requested index in the list.

Methods

Methods

  • Return the quality at the requested index in the list.

    Parameters

    • index: number

      A number representing the index of a quality in the list.

    Returns Quality

    The quality with index index in the list.