UNPKG
bandcamp-fetch
Version:
latest (3.1.0)
3.1.0
3.0.0
2.0.0
1.2.1
1.2.0
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
0.3.1-b.1
0.3.0-b.1
0.2.2-b.1
0.2.1-b.20211020b
0.2.1-b.20211020
0.2.0-b.20211020
0.1.0-a-20210216
0.1.0-a-20210213.3
0.1.0-a-20210213.2
0.1.0-a-20210213
0.1.0-a-20210210
0.1.0-a-20210203
0.1.0-a-20210126
0.1.0-a-20210121
0.1.0-a-20210120
0.1.0-a-20210119
Scrape Bandcamp content
github.com/patrickkfkan/bandcamp-fetch
patrickkfkan/bandcamp-fetch
bandcamp-fetch
/
dist
/
cjs
/
lib
/
types
/
Shirt.d.ts
14 lines
•
309 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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