Interface Track

This interface represents a track, including its title and optional arrays of linked releases and artists.

interface Track {
    title: string;
    releases?: (string | Linked<OOMD.Release>)[];
    artists?: (string | Linked<OOMD.Artist>)[];
}

Properties

title: string

The title of the track

releases?: (string | Linked<OOMD.Release>)[]

An optional array of linked releases or release names, otherwise assumed to be any parent inscriptions implementing Release

artists?: (string | Linked<OOMD.Artist>)[]

An optional array of linked artists or artist names, otherwise assumed to be any grand parent inscriptions implementing Artist