bandcamp-fetch
Version:
Scrape Bandcamp content
18 lines • 425 B
TypeScript
import type Artist from './Artist.js';
interface Shirt {
type: 'shirt';
name: string;
url?: string;
imageUrl?: {
primary: string;
/**
* @deprecated Use {@link additional} array instead.
*/
secondary?: string;
additional?: string[];
};
releaseDate?: string;
artist?: Omit<Artist, 'type'>;
}
export default Shirt;
//# sourceMappingURL=Shirt.d.ts.map