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