export default interface Album{ /** * The name of the album. * * @type {string} * @memberof Album */ name:string; /** * The URI of the album. * * @type {string} * @memberof Album */ uri:string; }