bandcamp-fetch
Version:
Scrape Bandcamp content
16 lines • 416 B
TypeScript
import type UserKind from './UserKind.js';
interface Fan extends UserKind {
type: 'fan';
username: string;
websiteUrl: string;
followingGenresCount: number;
followingArtistsAndLabelsCount: number;
wishlistItemCount: number;
collectionItemCount: number;
}
export interface FanItemsContinuation {
fanId: number;
token: string;
}
export default Fan;
//# sourceMappingURL=Fan.d.ts.map