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<Release>)[];
    artists?: (string | Linked<Artist>)[];
}

Properties

title: string

The title of the track

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

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

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

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