UNPKG

bandcamp-fetch

Version:
9 lines 236 B
import type Label from './Label.js'; import type UserKind from './UserKind.js'; interface Artist extends UserKind { type: 'artist'; label?: Label; genre?: string; } export default Artist; //# sourceMappingURL=Artist.d.ts.map