UNPKG

bandcamp-fetch

Version:
14 lines 309 B
import type Artist from './Artist.js'; interface Shirt { type: 'shirt'; name: string; url?: string; imageUrl?: { primary: string; secondary?: string; }; releaseDate?: string; artist?: Omit<Artist, 'type'>; } export default Shirt; //# sourceMappingURL=Shirt.d.ts.map