Interface Album

Album ($ref: "AudioLibrary.Album") Represents a simplified album object.

interface Album {
    albumid: string;
    artist: string;
    genre: string;
    title: string;
    year: number;
}

Properties

albumid: string
artist: string
genre: string
title: string
year: number