SetListItem Interface
Represents an item in a list
interface SetListItem
{
readonly kind: SetListItemKind;
readonly name: string;
readonly pr: number;
readonly color: number;
}
#color
The color of the item (0 to 15)
readonly color: number;
#kind
The item kind
readonly kind: SetListItemKind;
#name
The name of the song or break
readonly name: string;
#pr
The zero based program number of a song
readonly pr: number;